예제 #1
0
파일: IFC T.cs 프로젝트: jenca-cloud/ggIFC
		protected static void parseFields(IfcTopologicalRepresentationItem i, List<string> arrFields, ref int ipos) { IfcRepresentationItem.parseFields(i, arrFields, ref ipos); }
예제 #2
0
파일: IFC T.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcTopologyRepresentation getRepresentation(IfcTopologicalRepresentationItem ri)
		{
			IfcConnectedFaceSet cfs = ri as IfcConnectedFaceSet;
			if (cfs != null)
				return new IfcTopologyRepresentation(cfs, "");
			IfcEdge e = ri as IfcEdge;
			if (e != null)
				return new IfcTopologyRepresentation(e, "");
			IfcFace f = ri as IfcFace;
			if (f != null)
				return new IfcTopologyRepresentation(f, "");
			IfcVertex v = ri as IfcVertex;
			if (v != null)
				return new IfcTopologyRepresentation(v, "");
			return null;
		}
예제 #3
0
파일: IFC T.cs 프로젝트: jenca-cloud/ggIFC
		protected IfcTopologicalRepresentationItem(IfcTopologicalRepresentationItem el) : base(el) { }