상속: IfcGeometricRepresentationItem, IfcGeometricSetSelect, IfcPointOrVertexPoint
예제 #1
0
 public IfcVertexPoint(IfcPoint p) : base(p.mDatabase)
 {
     VertexGeometry = p;
 }
예제 #2
0
파일: IFC V.cs 프로젝트: jenca-cloud/ggIFC
		public IfcVertexPoint(IfcPoint cp) : base(cp.mDatabase) { mVertexGeometry = cp.mIndex; }
예제 #3
0
 public IfcVertexPoint(IfcPoint cp) : base(cp.mDatabase)
 {
     mVertexGeometry = cp.mIndex;
 }
예제 #4
0
 internal IfcVertexPoint(DatabaseIfc db, IfcVertexPoint v) : base(db, v)
 {
     VertexGeometry = db.Factory.Duplicate(v.VertexGeometry) as IfcPoint;
 }
예제 #5
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcPoint p, List<string> arrFields, ref int ipos) { IfcGeometricRepresentationItem.parseFields(p, arrFields, ref ipos); }
예제 #6
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		protected IfcPoint(IfcPoint p) : base(p) { }
예제 #7
0
		public IfcVertexPoint(IfcPoint p) : base(p.mDatabase) { VertexGeometry = p; }
예제 #8
0
		internal IfcVertexPoint(DatabaseIfc db, IfcVertexPoint v) : base(db,v) { VertexGeometry = db.Factory.Duplicate(v.VertexGeometry) as IfcPoint; }
예제 #9
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		public IfcShapeRepresentation(IfcPoint p) : base(p, "", "Point") { }