Inheritance: IfcFaceBound
Exemplo n.º 1
0
        internal List<int> mBounds = new List<int>(); // : SET [1:?] OF IfcFaceBound;

        #endregion Fields

        #region Constructors

        public IfcFace(IfcFaceOuterBound outer)
            : base(outer.mDatabase)
        {
            mBounds.Add(outer.mIndex);
        }
Exemplo n.º 2
0
 public IfcFace(IfcFaceOuterBound outer, IfcFaceBound inner)
     : this(outer)
 {
     mBounds.Add(inner.mIndex);
 }
Exemplo n.º 3
0
        internal bool mSameSense = true; // : BOOLEAN;

        #endregion Fields

        #region Constructors

        public IfcFaceSurface(IfcFaceOuterBound bound, IfcSurface srf, bool sameSense)
            : base(bound)
        {
            mFaceSurface = srf.mIndex; mSameSense = sameSense;
        }
Exemplo n.º 4
0
 public IfcFaceSurface(IfcFaceOuterBound outer, IfcFaceBound inner, IfcSurface srf, bool sameSense)
     : base(outer, inner)
 {
     mFaceSurface = srf.mIndex; mSameSense = sameSense;
 }
Exemplo n.º 5
0
 internal IfcFaceOuterBound(DatabaseIfc db, IfcFaceOuterBound b)
     : base(db,b)
 {
 }
Exemplo n.º 6
0
 internal static new IfcFaceOuterBound Parse(string str)
 {
     IfcFaceOuterBound b = new IfcFaceOuterBound();
     int pos = 0;
     b.Parse(str, ref pos, str.Length);
     return b;
 }
Exemplo n.º 7
0
		public IfcAdvancedFace(IfcFaceOuterBound bound, IfcSurface f, bool sense) : base(bound, f, sense) { }
Exemplo n.º 8
0
		public IfcAdvancedFace(IfcFaceOuterBound outer, IfcFaceBound inner, IfcSurface f, bool sense) : base(outer,inner, f, sense) { }
Exemplo n.º 9
0
		internal IfcFaceOuterBound(IfcFaceOuterBound i) : base(i) { }
Exemplo n.º 10
0
		internal new static IfcFaceOuterBound Parse(string str)
		{
			IfcFaceOuterBound b = new IfcFaceOuterBound();
			int pos = 0;
			parseString(b, str, ref pos);
			return b;
		}
Exemplo n.º 11
0
 public IfcFace(IfcFaceOuterBound outer, IfcFaceBound inner) : this(outer) { mBounds.Add(inner); }
Exemplo n.º 12
0
 public IfcFace(IfcFaceOuterBound outer) : base(outer.mDatabase)
 {
     mBounds.Add(outer);
 }
Exemplo n.º 13
0
 public IfcFaceSurface(IfcFaceOuterBound outer, IfcFaceBound inner, IfcSurface srf, bool sameSense) : base(outer, inner)
 {
     FaceSurface = srf; mSameSense = sameSense;
 }
Exemplo n.º 14
0
 public IfcFaceSurface(IfcFaceOuterBound bound, IfcSurface srf, bool sameSense) : base(bound)
 {
     FaceSurface = srf; mSameSense = sameSense;
 }
Exemplo n.º 15
0
 internal IfcFaceOuterBound(DatabaseIfc db, IfcFaceOuterBound b) : base(db, b)
 {
 }