Exemple #1
0
		protected static void parseFields(IfcTopologicalRepresentationItem i, List<string> arrFields, ref int ipos) { IfcRepresentationItem.parseFields(i, arrFields, ref ipos); }
Exemple #2
0
		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;
		}
Exemple #3
0
		protected IfcTopologicalRepresentationItem(IfcTopologicalRepresentationItem el) : base(el) { }