Changes between Version 9 and Version 10 of FDORfc48
- Timestamp:
- 07/05/10 02:39:17 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified FDORfc48
v9 v10 128 128 ...... 129 129 /// \brief 130 /// Fixes polygon vertex order error according to the specified vertex order rule. 130 /// Check whether the vertex order of the input polygon follows the specified 131 /// vertex order rule. And fix it if not. 131 132 /// 132 133 /// \param geometry 133 /// Input the polygon geometry to be fixed. 134 /// \param vertexOrderRule 135 /// Input polygon vertex order rule that the specified geometry should follow. 134 /// Input the polygon geometry to be fixed. It can be a polygon, multipolygon, 135 /// curvepolygon, or multicurvepolygon. 136 136 /// \return 137 /// Returns the fixed polygon. If the input polygon already follows the specified 138 /// vertex order rule or the specified vertex order rule is 139 /// FdoPolygonVertexOrderRule_None, returns NULL. 137 /// Returns the modified polygon. 140 138 /// 141 FDO_SPATIAL_API static FdoIGeometry* FixPolygonVertexOrder 139 FDO_SPATIAL_API static FdoIGeometry* FixPolygonVertexOrder ( 142 140 FdoIGeometry * geometry, 143 141 FdoPolygonVertexOrderRule vertexOrderRule ); 142 143 /// \brief 144 /// Reverse the vertex order of the input polygon. 145 /// 146 /// \param geometry 147 /// Input the polygon geometry to be reversed. It can be a polygon, multipolygon, 148 /// curvepolygon, or multicurvepolygon. 149 /// \return 150 /// Returns the modified polygon. 151 /// 152 FDO_SPATIAL_API static FdoIGeometry* ReversePolygonVertexOrder ( 153 FdoIGeometry * geometry ); 144 154 ...... 145 155 };