Changes between Version 5 and Version 6 of FDORfc28


Ignore:
Timestamp:
Oct 21, 2008, 11:00:51 AM (16 years ago)
Author:
gregboone
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc28

    v5 v6  
    2222== Overview ==
    2323
    24 This RFC follows from RFC 8 by adding geometric functions for MinX, MinY, MaxX and MaxY.
     24This RFC follows from RFC 8 by adding geometric functions for MinX, MinY, MinZ, MaxX, MaxY and MaxZ.
    2525
    2626== Signatures ==
     
    2828This RFC proposes the following signatures for the new functions:
    2929
    30 double MinX(<geometry property>); 
    31 double MinY(<geometry property>); 
    32 double MinZ(<geometry property>); 
     30double MinX(<geometry property>);[[BR]]
     31double MinY(<geometry property>);[[BR]]
     32double MinZ(<geometry property>);[[BR]]
    3333
    34 double MaxX(<geometry property>); 
    35 double MaxY(<geometry property>); 
    36 double MaxZ(<geometry property>); 
     34double MaxX(<geometry property>);[[BR]]
     35double MaxY(<geometry property>);[[BR]]
     36double MaxZ(<geometry property>);[[BR]]
    3737
    3838All of the above functions accept a geometry property only. The result of the functions depend on the provided geometry:
    3939
    40 if the provided geometry is a point geometry, the result of the Min/Max functions is the x, y, z values of the point 
    41 if the provided geometry is a line, the result of the Min/Max functions is the x, y, z values of the start and end points 
    42 if the provided geometry is a polygon, the result of the Min/Max functions is the x, y, z values of the start and end points of the exterior ring of the polygon
     40If the provided geometry is a point geometry, the result of the Min/Max functions is the x, y, z values of the point.[[BR]]
     41If the provided geometry is a line, the result of the Min/Max functions is the x, y, z values of the start and end points.[[BR]]
     42If the provided geometry is a polygon, the result of the Min/Max functions is the x, y, z values of the start and end points of the exterior ring of the polygon.[[BR]]
    4343
    44 Like the standard functions listed in RFC 8, the user can get access to the geometric function definitions via the FDO interface GetWellKnownFunctions. The new functions will be categorized as geometry functions (FdoFunctionCategoryType_Geometry).
     44Like the standard functions listed in RFC 8, the user can get access to the geometric function definitions via the FDO interface !GetWellKnownFunctions. The new functions will be categorized as geometry functions (!FdoFunctionCategoryType_Geometry).
    4545
    4646=== Example ===