Changes between Version 9 and Version 10 of FDORfc48


Ignore:
Timestamp:
Jul 5, 2010, 2:39:17 AM (14 years ago)
Author:
leaf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc48

    v9 v10  
    128128    ......
    129129    /// \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.
    131132    ///
    132133    /// \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.
    136136    /// \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. 
    140138    ///
    141     FDO_SPATIAL_API static FdoIGeometry* FixPolygonVertexOrder  (
     139    FDO_SPATIAL_API static FdoIGeometry* FixPolygonVertexOrder (
    142140                              FdoIGeometry * geometry,
    143141                              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 );
    144154    ......
    145155};