Changeset 662

Show
Ignore:
Timestamp:
05/03/08 02:48:48 (14 months ago)
Author:
hobu
Message:

doc updates

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/include/liblas/capi/liblas.h

    r661 r662  
    191191/****************************************************************************/ 
    192192 
    193  
     193/** Returns the X value for the point.  This value is not scaled or offset 
     194 *  by any header values and stands on its own.  If you need points to have  
     195 *  a scale and/or offset applied, this must be done in conjunction with the  
     196 *  header values after the value is read. 
     197 *  @param hPoint the opaque pointer to the LASPointH instance   
     198 *  @return the X value for the LASPointH 
     199*/ 
    194200LAS_DLL double LASPoint_GetX(const LASPointH hPoint); 
     201 
     202/** Sets the X value for the point.  This value must be scaled or offset  
     203 *  by any header values before being set. 
     204 *  @param hPoint the opaque pointer to the LASPointH instance 
     205 *  @param value the double value to set for the X value of the point 
     206 *  @return an error number if an error occured during the setting of the point. 
     207*/ 
    195208LAS_DLL LASError LASPoint_SetX(LASPointH hPoint, double value); 
     209 
     210/** Returns the Y value for the point.  This value is not scaled or offset 
     211 *  by any header values and stands on its own.  If you need points to have  
     212 *  a scale and/or offset applied, this must be done in conjunction with the  
     213 *  header values after the value is read. 
     214 *  @param hPoint the opaque pointer to the LASPointH instance   
     215 *  @return the Y value for the LASPointH 
     216*/ 
    196217LAS_DLL double LASPoint_GetY(const LASPointH hPoint); 
     218 
     219/** Sets the Y value for the point.  This value must be scaled or offset  
     220 *  by any header values before being set. 
     221 *  @param hPoint the opaque pointer to the LASPointH instance 
     222 *  @param value the double value to set for the Y value of the point 
     223 *  @return an error number if an error occured during the setting of the point. 
     224*/ 
    197225LAS_DLL LASError LASPoint_SetY(LASPointH hPoint, double value); 
     226 
     227/** Returns the Z value for the point.  This value is not scaled or offset 
     228 *  by any header values and stands on its own.  If you need points to have  
     229 *  a scale and/or offset applied, this must be done in conjunction with the  
     230 *  header values after the value is read. 
     231 *  @param hPoint the opaque pointer to the LASPointH instance   
     232 *  @return the Z value for the LASPointH 
     233*/ 
    198234LAS_DLL double LASPoint_GetZ(const LASPointH hPoint); 
     235 
     236/** Sets the Z value for the point.  This value must be scaled or offset  
     237 *  by any header values before being set. 
     238 *  @param hPoint the opaque pointer to the LASPointH instance 
     239 *  @param value the double value to set for the Z value of the point 
     240 *  @return an error number if an error occured during the setting of the point. 
     241*/ 
    199242LAS_DLL LASError LASPoint_SetZ(LASPointH hPoint, double value); 
    200243