Inheritance: GeometryGym.Ifc.IfcTopologicalRepresentationItem
コード例 #1
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
 public IfcFaceOuterBound(IfcLoop l, bool orientation)
     : base(l, orientation)
 {
 }
コード例 #2
0
ファイル: IFC L.cs プロジェクト: jmirtsch/GeometryGymIFC
 protected IfcLoop(DatabaseIfc db, IfcLoop l)
     : base(db,l)
 {
 }
コード例 #3
0
ファイル: IFC F.cs プロジェクト: jmirtsch/GeometryGymIFC
        internal bool mOrientation = true; // : BOOLEAN;

        #endregion Fields

        #region Constructors

        public IfcFaceBound(IfcLoop l, bool orientation)
            : base(l.mDatabase)
        {
            mBound = l.mIndex; mOrientation = orientation;
        }
コード例 #4
0
ファイル: IFC F.cs プロジェクト: xeolabs/GeometryGymIFC
 public IfcFaceOuterBound(IfcLoop l, bool orientation) : base(l, orientation)
 {
 }
コード例 #5
0
 protected IfcLoop(DatabaseIfc db, IfcLoop l, DuplicateOptions options) : base(db, l, options)
 {
 }
コード例 #6
0
ファイル: IFC L.cs プロジェクト: EmilPoulsen/GeometryGymIFC
 protected IfcLoop(DatabaseIfc db, IfcLoop l) : base(db, l)
 {
 }
コード例 #7
0
ファイル: IFC F.cs プロジェクト: xeolabs/GeometryGymIFC
 public IfcFaceBound(IfcLoop l, bool orientation) : base(l.mDatabase)
 {
     Bound = l; mOrientation = orientation;
 }
コード例 #8
0
ファイル: IFC L.cs プロジェクト: xxxhycl2010/GeometryGymIFC
 internal static IfcLoop Parse(string strDef)
 {
     IfcLoop l = new IfcLoop(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return(l);
 }
コード例 #9
0
ファイル: IFC L.cs プロジェクト: xxxhycl2010/GeometryGymIFC
 internal static void parseFields(IfcLoop l, List <string> arrFields, ref int ipos)
 {
     IfcTopologicalRepresentationItem.parseFields(l, arrFields, ref ipos);
 }
コード例 #10
0
ファイル: IFC L.cs プロジェクト: xxxhycl2010/GeometryGymIFC
 internal IfcLoop(DatabaseIfc db, IfcLoop l) : base(db, l)
 {
 }
コード例 #11
0
ファイル: IFC V.cs プロジェクト: mrozmanith/GeometryGymIFC
 internal static void parseFields(IfcVertexloop l, List <string> arrFields, ref int ipos)
 {
     IfcLoop.parseFields(l, arrFields, ref ipos); l.mLoopVertex = ParserSTEP.ParseLink(arrFields[ipos++]);
 }
コード例 #12
0
ファイル: IFC L.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcLoop l, List<string> arrFields, ref int ipos) { IfcTopologicalRepresentationItem.parseFields(l, arrFields, ref ipos); }
コード例 #13
0
ファイル: IFC L.cs プロジェクト: jenca-cloud/ggIFC
		internal static IfcLoop Parse(string strDef) { IfcLoop l = new IfcLoop(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return l; }
コード例 #14
0
ファイル: IFC L.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcLoop(IfcLoop o) : base(o) { }