public IfcOrientedEdge(IfcVertex edgeStart, IfcVertex edgeEnd, IfcEdge edgeElement, IfcBoolean orientation) : base(edgeStart, edgeEnd) { EdgeElement = edgeElement; Orientation = orientation; }
public IfcVertexLoop(IfcVertex loopVertex) : base() { LoopVertex = loopVertex; }
public IfcEdgeCurve(IfcVertex edgeStart, IfcVertex edgeEnd, IfcCurve edgeGeometry, IfcBoolean sameSense) : base(edgeStart, edgeEnd) { EdgeGeometry = edgeGeometry; SameSense = sameSense; }
public IfcSubedge(IfcVertex edgeStart, IfcVertex edgeEnd, IfcEdge parentEdge) : base(edgeStart, edgeEnd) { ParentEdge = parentEdge; }
public IfcEdge(IfcVertex edgeStart, IfcVertex edgeEnd) : base() { EdgeStart = edgeStart; EdgeEnd = edgeEnd; }