Ejemplo n.º 1
0
 public IfcFixedReferenceSweptAreaSolid(IfcProfileDef sweptArea, IfcAxis2Placement3D position, IfcCurve directrix, IfcParameterValue startParam, IfcParameterValue endParam, IfcDirection fixedReference) : base(sweptArea, position)
 {
     Directrix      = directrix;
     StartParam     = startParam;
     EndParam       = endParam;
     FixedReference = fixedReference;
 }
Ejemplo n.º 2
0
 public IfcOffsetCurve3D(IfcCurve basisCurve, IfcLengthMeasure distance, IfcLogical selfIntersect, IfcDirection refDirection) : base()
 {
     BasisCurve    = basisCurve;
     Distance      = distance;
     SelfIntersect = selfIntersect;
     RefDirection  = refDirection;
 }
Ejemplo n.º 3
0
 public IfcSweptDiskSolid(IfcCurve directrix, IfcPositiveLengthMeasure radius, IfcPositiveLengthMeasure innerRadius, IfcParameterValue startParam, IfcParameterValue endParam) : base()
 {
     Directrix   = directrix;
     Radius      = radius;
     InnerRadius = innerRadius;
     StartParam  = startParam;
     EndParam    = endParam;
 }
Ejemplo n.º 4
0
 public IfcTrimmedCurve(IfcCurve basisCurve, List <IfcTrimmingSelect> trim1, List <IfcTrimmingSelect> trim2, IfcBoolean senseAgreement, IfcTrimmingPreference masterRepresentation) : base()
 {
     BasisCurve           = basisCurve;
     Trim1                = trim1;
     Trim2                = trim2;
     SenseAgreement       = senseAgreement;
     MasterRepresentation = masterRepresentation;
 }
Ejemplo n.º 5
0
        public IfcCompositeCurveSegment(IfcTransitionCode transition, IfcBoolean sameSense, IfcCurve parentCurve) : base()
        {
            UsingCurves = new List <IfcCompositeCurve>();

            Transition  = transition;
            SameSense   = sameSense;
            ParentCurve = parentCurve;
        }
Ejemplo n.º 6
0
        }                                                                          // inverse


        /// <summary>
        /// Construct a IfcGridAxis with all required attributes.
        /// </summary>
        public IfcGridAxis(IfcCurve axisCurve, IfcBoolean sameSense) : base()
        {
            PartOfW          = new List <IfcGrid>();
            PartOfV          = new List <IfcGrid>();
            PartOfU          = new List <IfcGrid>();
            HasIntersections = new List <IfcVirtualGridIntersection>();

            AxisCurve = axisCurve;
            SameSense = sameSense;
        }
Ejemplo n.º 7
0
 public IfcSweptDiskSolidPolygonal(IfcCurve directrix, IfcPositiveLengthMeasure radius, IfcPositiveLengthMeasure innerRadius, IfcParameterValue startParam, IfcParameterValue endParam, IfcPositiveLengthMeasure filletRadius) : base(directrix, radius, innerRadius, startParam, endParam)
 {
     FilletRadius = filletRadius;
 }
 public IfcArbitraryClosedProfileDef(IfcProfileTypeEnum profileType, IfcLabel profileName, IfcCurve outerCurve) : base(profileType, profileName)
 {
     OuterCurve = outerCurve;
 }
Ejemplo n.º 9
0
 public static IfcDimensionCount IfcCurveDim(IfcCurve curve)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 10
0
 public IfcEdgeCurve(IfcVertex edgeStart, IfcVertex edgeEnd, IfcCurve edgeGeometry, IfcBoolean sameSense) : base(edgeStart, edgeEnd)
 {
     EdgeGeometry = edgeGeometry;
     SameSense    = sameSense;
 }
 public IfcArbitraryProfileDefWithVoids(IfcProfileTypeEnum profileType, IfcLabel profileName, IfcCurve outerCurve, List <IfcCurve> innerCurves) : base(profileType, profileName, outerCurve)
 {
     InnerCurves = innerCurves;
 }
Ejemplo n.º 12
0
        }                                                   // optional


        /// <summary>
        /// Construct a IfcSweptDiskSolid with all required attributes.
        /// </summary>
        public IfcSweptDiskSolid(IfcCurve directrix, IfcPositiveLengthMeasure radius) : base()
        {
            Directrix = directrix;
            Radius    = radius;
        }
Ejemplo n.º 13
0
 public IfcGeometricSetSelect(IfcCurve choice)
 {
     this.choice = choice;
 }
Ejemplo n.º 14
0
        }                                                              // optional


        /// <summary>
        /// Construct a IfcSweptDiskSolidPolygonal with all required attributes.
        /// </summary>
        public IfcSweptDiskSolidPolygonal(IfcCurve directrix, IfcPositiveLengthMeasure radius) : base(directrix, radius)
        {
        }
Ejemplo n.º 15
0
 public IfcReparametrisedCompositeCurveSegment(IfcTransitionCode transition, IfcBoolean sameSense, IfcCurve parentCurve, IfcParameterValue paramLength) : base(transition, sameSense, parentCurve)
 {
     ParamLength = paramLength;
 }
Ejemplo n.º 16
0
 public IfcPcurve(IfcSurface basisSurface, IfcCurve referenceCurve) : base()
 {
     BasisSurface   = basisSurface;
     ReferenceCurve = referenceCurve;
 }
Ejemplo n.º 17
0
 public IfcSurfaceCurve(IfcCurve curve3D, List <IfcPcurve> associatedGeometry, IfcPreferredSurfaceCurveRepresentation masterRepresentation) : base()
 {
     Curve3D              = curve3D;
     AssociatedGeometry   = associatedGeometry;
     MasterRepresentation = masterRepresentation;
 }
 /// <summary>
 /// Construct a IfcSurfaceCurveSweptAreaSolid with all required attributes.
 /// </summary>
 public IfcSurfaceCurveSweptAreaSolid(IfcProfileDef sweptArea, IfcCurve directrix, IfcSurface referenceSurface) : base(sweptArea)
 {
     Directrix        = directrix;
     ReferenceSurface = referenceSurface;
 }
Ejemplo n.º 19
0
 public IfcOffsetCurve2D(IfcCurve basisCurve, IfcLengthMeasure distance, IfcLogical selfIntersect) : base()
 {
     BasisCurve    = basisCurve;
     Distance      = distance;
     SelfIntersect = selfIntersect;
 }
Ejemplo n.º 20
0
 /// <summary>
 /// Construct a IfcFixedReferenceSweptAreaSolid with all required attributes.
 /// </summary>
 public IfcFixedReferenceSweptAreaSolid(IfcProfileDef sweptArea, IfcCurve directrix, IfcDirection fixedReference) : base(sweptArea)
 {
     Directrix      = directrix;
     FixedReference = fixedReference;
 }
Ejemplo n.º 21
0
 public IfcIntersectionCurve(IfcCurve curve3D, List <IfcPcurve> associatedGeometry, IfcPreferredSurfaceCurveRepresentation masterRepresentation) : base(curve3D, associatedGeometry, masterRepresentation)
 {
 }
Ejemplo n.º 22
0
 public IfcCurveBoundedPlane(IfcPlane basisSurface, IfcCurve outerBoundary, List <IfcCurve> innerBoundaries) : base()
 {
     BasisSurface    = basisSurface;
     OuterBoundary   = outerBoundary;
     InnerBoundaries = innerBoundaries;
 }
Ejemplo n.º 23
0
        }                                                       // optional


        /// <summary>
        /// Construct a IfcAnnotationFillArea with all required attributes.
        /// </summary>
        public IfcAnnotationFillArea(IfcCurve outerBoundary) : base()
        {
            InnerBoundaries = new List <IfcCurve>();

            OuterBoundary = outerBoundary;
        }
Ejemplo n.º 24
0
 public IfcPointOnCurve(IfcCurve basisCurve, IfcParameterValue pointParameter) : base()
 {
     BasisCurve     = basisCurve;
     PointParameter = pointParameter;
 }
Ejemplo n.º 25
0
 public IfcAnnotationFillArea(IfcCurve outerBoundary, List <IfcCurve> innerBoundaries) : base()
 {
     OuterBoundary   = outerBoundary;
     InnerBoundaries = innerBoundaries;
 }