Changes between Version 19 and Version 20 of FDORfc59
- Timestamp:
- 04/10/11 16:33:49 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc59
v19 v20 46 46 Appendix “A” describes these interfaces in their API form. For additional information of the complete set of FDO Geometry API classes, refer to the online FDO API documentation, starting with the following links: 47 47 48 -FdoIGeometry:48 FdoIGeometry: 49 49 50 50 http://fdo.osgeo.org/files/fdo/docs/FDO_API/da/da2/class_fdo_i_geometry.htm 51 51 52 -FdoICurveSegmentAbstract:52 FdoICurveSegmentAbstract: 53 53 54 54 http://fdo.osgeo.org/files/fdo/docs/FDO_API/df/d3b/class_fdo_i_curve_segment_abstract.htm … … 58 58 The !GeometryComponnetType enumeration will be enhanced to include enumerations for the new segment types listed above. The full enumeration is provided below, but the new types being added are as follows: 59 59 60 - !FdoGeometryComponentType_EllipticalArcSegment61 - !FdoGeometryComponentType_CubicSplineSegmen62 - !FdoGeometryComponentType_BSplineSegment63 - !FdoGeometryComponentType_CircleSegment60 !FdoGeometryComponentType_EllipticalArcSegment[[BR]] 61 !FdoGeometryComponentType_CubicSplineSegmen[[BR]] 62 !FdoGeometryComponentType_BSplineSegment[[BR]] 63 !FdoGeometryComponentType_CircleSegment[[BR]] 64 64 65 65 … … 130 130 { 131 131 public: 132 133 132 /// \brief 134 133 /// Gets the two focal positions of this Ellipse Geometry. … … 395 394 { 396 395 public: 397 398 396 /// \brief 399 397 /// Gets the value of the parameter at the knot of the spline. … … 443 441 /// Returns an empty collection 444 442 /// 445 static FdoBSplineKnotCollection* Create() 446 { 447 FdoBSplineKnotCollection* value = new FdoBSplineKnotCollection(); 448 if (NULL == value) 449 throw FdoException::Create( 450 FdoException::NLSGetMessage(FDO_NLSID(FDO_1_BADALLOC))); 451 return value; 452 } 443 static FdoBSplineKnotCollection* Create(); 453 444 }; 454 445 }}} … … 809 800 {{{ 810 801 CIRCLESEGMENT { 811 static uint32 FGFBType = 137;812 Position firstPosition;813 Position secondPosition;814 Position thirdPosition1;802 static uint32 FGFBType = 137; 803 Position firstPosition; 804 Position secondPosition; 805 Position thirdPosition1; 815 806 }; 816 807 }}}