Changes between Version 34 and Version 35 of FDORfc59
- Timestamp:
- 04/11/11 07:49:50 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc59
v34 v35 166 166 === Class FdoISpiralSegmentAbstract === 167 167 168 The FdoISpiralSegmentAbstract class represets a Spiral curve segment (abstract) 168 The FdoISpiralSegmentAbstract class represets a Spiral curve segment (abstract). ISpiralSegmentAbstract is the based class for all spline geometry types, including cubic-splaine and b-spline. 169 169 170 170 … … 185 185 === Class FdoISplineSegmentAbstract === 186 186 187 The FdoISplineSegmentAbstract class is the base class for Spline segments (abstract) 187 The FdoISplineSegmentAbstract class is the base class for Spline segments (abstract). ISplineSegmentAbstract is the based class for all spline geometry types, including cubic-splaine and b-spline. 188 188 189 189 … … 332 332 { 333 333 /// The knots are appropriate for a uniform B-spline. 334 /// e.g. [0 1 2 3 4 5].335 334 FdoGeometricKnotType_Uniform = 500, 336 335 337 336 /// The knots are appropriate for a quasi-uniform B-spline. 338 /// e.g. [0 0 0 0 1 2 3 3 3 3]339 337 FdoGeometricKnotType_QuasiUniform = 501, 340 338 341 339 /// The knots are appropriate for a piecewise Bezier curve. 342 /// e.g. [0 0 0 1 1 2 2 3 3 3]343 340 FdoGeometricKnotType_PiecewiseBezier = 502, 344 341 }; … … 389 386 === Class FdoBSplineKnotCollection === 390 387 391 The FdoBSplineKnotCollection class is a collection of FdoIBSplineKnot objects.388 The FdoBSplineKnotCollection class is a simple collection of FdoIBSplineKnot objects. 392 389 393 390 … … 487 484 === Additions to the Geometry Factory Class === 488 485 489 The !GeometryFactoryAbstract class is a factory (abstract, non-pure) for Geometry objects and Geometry helper objects. 486 The !GeometryFactoryAbstract class is a factory (abstract, non-pure) for Geometry objects and Geometry helper objects. The methods described below will be added to the definition of the Factory Class. 490 487 491 488