Inheritance: GeometryGym.Ifc.IfcTopologicalRepresentationItem
Beispiel #1
0
 public IfcFaceOuterBound(IfcLoop l, bool orientation)
     : base(l, orientation)
 {
 }
Beispiel #2
0
 protected IfcLoop(DatabaseIfc db, IfcLoop l)
     : base(db,l)
 {
 }
Beispiel #3
0
        internal bool mOrientation = true; // : BOOLEAN;

        #endregion Fields

        #region Constructors

        public IfcFaceBound(IfcLoop l, bool orientation)
            : base(l.mDatabase)
        {
            mBound = l.mIndex; mOrientation = orientation;
        }
Beispiel #4
0
 public IfcFaceOuterBound(IfcLoop l, bool orientation) : base(l, orientation)
 {
 }
Beispiel #5
0
 protected IfcLoop(DatabaseIfc db, IfcLoop l, DuplicateOptions options) : base(db, l, options)
 {
 }
Beispiel #6
0
 protected IfcLoop(DatabaseIfc db, IfcLoop l) : base(db, l)
 {
 }
Beispiel #7
0
 public IfcFaceBound(IfcLoop l, bool orientation) : base(l.mDatabase)
 {
     Bound = l; mOrientation = orientation;
 }
Beispiel #8
0
 internal static IfcLoop Parse(string strDef)
 {
     IfcLoop l = new IfcLoop(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return(l);
 }
Beispiel #9
0
 internal static void parseFields(IfcLoop l, List <string> arrFields, ref int ipos)
 {
     IfcTopologicalRepresentationItem.parseFields(l, arrFields, ref ipos);
 }
Beispiel #10
0
 internal IfcLoop(DatabaseIfc db, IfcLoop l) : base(db, l)
 {
 }
Beispiel #11
0
 internal static void parseFields(IfcVertexloop l, List <string> arrFields, ref int ipos)
 {
     IfcLoop.parseFields(l, arrFields, ref ipos); l.mLoopVertex = ParserSTEP.ParseLink(arrFields[ipos++]);
 }
Beispiel #12
0
		internal static void parseFields(IfcLoop l, List<string> arrFields, ref int ipos) { IfcTopologicalRepresentationItem.parseFields(l, arrFields, ref ipos); }
Beispiel #13
0
		internal static IfcLoop Parse(string strDef) { IfcLoop l = new IfcLoop(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return l; }
Beispiel #14
0
		internal IfcLoop(IfcLoop o) : base(o) { }