Inheritance: IfcIndexedPolygonalFace
コード例 #1
0
ファイル: IFC I.cs プロジェクト: PlumpMath/GeometryGymIFC-1
 internal new static IfcIndexedPolygonalFaceWithVoids Parse(string strDef)
 {
     IfcIndexedPolygonalFaceWithVoids s = new IfcIndexedPolygonalFaceWithVoids(); int ipos = 0; s.parseFields(ParserSTEP.SplitLineFields(strDef), ref ipos); return(s);
 }
コード例 #2
0
ファイル: IFC I.cs プロジェクト: PlumpMath/GeometryGymIFC-1
 internal IfcIndexedPolygonalFaceWithVoids(DatabaseIfc db, IfcIndexedPolygonalFaceWithVoids f) : base(db, f)
 {
     mInnerCoordIndices.AddRange(f.mInnerCoordIndices);
 }
コード例 #3
0
ファイル: IFC I.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal static new IfcIndexedPolygonalFaceWithVoids Parse(string strDef)
 {
     IfcIndexedPolygonalFaceWithVoids s = new IfcIndexedPolygonalFaceWithVoids(); int ipos = 0; s.parseFields(ParserSTEP.SplitLineFields(strDef), ref ipos); return s;
 }
コード例 #4
0
 internal IfcIndexedPolygonalFaceWithVoids(DatabaseIfc db, IfcIndexedPolygonalFaceWithVoids f, DuplicateOptions options) : base(db, f, options)
 {
     mInnerCoordIndices.AddRange(f.mInnerCoordIndices);
 }
コード例 #5
0
ファイル: IFC I.cs プロジェクト: jmirtsch/GeometryGymIFC
 internal IfcIndexedPolygonalFaceWithVoids(DatabaseIfc db, IfcIndexedPolygonalFaceWithVoids f)
     : base(db, f)
 {
     mInnerCoordIndices.AddRange(f.mInnerCoordIndices);
 }