public BSplineType()
 {
     this.interpolationField = CurveInterpolationType.polynomialSpline;
 }
 public ClothoidType()
 {
     this.interpolationField = CurveInterpolationType.clothoid;
 }
 public ArcByCenterPointType()
 {
     this.interpolationField = CurveInterpolationType.circularArcCenterPointWithRadius;
     this.numArcField = "1";
 }
 public CubicSplineType()
 {
     this.interpolationField = CurveInterpolationType.cubicSpline;
     this.degreeField = "3";
 }
Example #5
0
 public BSplineType()
 {
     this.interpolationField = CurveInterpolationType.polynomialSpline;
 }
 public GeodesicStringType()
 {
     this.interpolationField = CurveInterpolationType.geodesic;
 }
Example #7
0
 public ArcStringType()
 {
     this.interpolationField = CurveInterpolationType.circularArc3Points;
 }
 public SphereType()
 {
     this.horizontalCurveTypeField = CurveInterpolationType.circularArc3Points;
     this.verticalCurveTypeField = CurveInterpolationType.circularArc3Points;
 }
Example #9
0
 public S100_ArcByCenterPointType(CurveInterpolationType interpolation, LengthType radius, gml.integer numDerivativesAtStart, gml.integer numDerivativesAtEnd, gml.integer numDerivativeInterior) : base(numDerivativesAtStart, numDerivativesAtEnd, numDerivativeInterior)
 {
     this.interpolation = interpolation;
     this.radius        = radius;
 }
Example #10
0
 public S100_ArcByCenterPoint(CurveInterpolationType interpolation, LengthType radius, gml.integer numDerivativesAtStart, gml.integer numDerivativesAtEnd, gml.integer numDerivativeInterior) : base(interpolation, radius, numDerivativesAtStart, numDerivativesAtEnd, numDerivativeInterior)
 {
 }
 public ArcByCenterPointType()
 {
     this.interpolationField = CurveInterpolationType.circularArcCenterPointWithRadius;
     this.numArcField        = "1";
 }
 public CubicSplineType()
 {
     this.interpolationField = CurveInterpolationType.cubicSpline;
     this.degreeField        = "3";
 }
 public ClothoidType()
 {
     this.interpolationField = CurveInterpolationType.clothoid;
 }
 public GeodesicStringType()
 {
     this.interpolationField = CurveInterpolationType.geodesic;
 }
 public LineStringSegmentType()
 {
     this.interpolationField = CurveInterpolationType.linear;
 }
 public CylinderType()
 {
     this.horizontalCurveTypeField = CurveInterpolationType.circularArc3Points;
     this.verticalCurveTypeField = CurveInterpolationType.linear;
 }
 public ArcStringType()
 {
     this.interpolationField = CurveInterpolationType.circularArc3Points;
 }
Example #18
0
 public ArcStringByBulgeType()
 {
     this.interpolationField = CurveInterpolationType.circularArc2PointWithBulge;
 }
 public ArcStringByBulgeType()
 {
     this.interpolationField = CurveInterpolationType.circularArc2PointWithBulge;
 }
Example #20
0
 public ConeType()
 {
     this.horizontalCurveTypeField = CurveInterpolationType.circularArc3Points;
     this.verticalCurveTypeField   = CurveInterpolationType.linear;
 }
Example #21
0
 public LineStringSegmentType()
 {
     this.interpolationField = CurveInterpolationType.linear;
 }