00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078 #ifndef SRM_BASESRFWITHELLIPSOIDALHEIGHT_H_INCLUDED
00079 #define SRM_BASESRFWITHELLIPSOIDALHEIGHT_H_INCLUDED
00080
00081 #if !defined(_WIN32)
00082 #define EXPORT_DLL
00083 #elif !defined(EXPORT_DLL)
00084 #if defined(_LIB)
00085 #define EXPORT_DLL
00086 #elif defined(_USRDLL)
00087 #define EXPORT_DLL __declspec(dllexport)
00088 #else
00089 #define EXPORT_DLL __declspec(dllimport)
00090 #endif
00091 #endif
00092
00093 #include "srm.h"
00094
00095 #ifdef __cplusplus
00096 extern "C" {
00097 #endif
00098
00105 typedef SRM_Status_Code SRM_AssociateSurfaceCoordinateEH
00106 (
00107 SRM_Object_Reference this_object,
00108 const SRM_Coordinate3D *coordinate,
00109 SRM_SurfaceCoordinate *on_surface_coordinate
00110 );
00111
00122 typedef SRM_Status_Code SRM_CreateLocalTangentSpaceEuclideanSRF
00123 (
00124 SRM_Object_Reference this_object,
00125 const SRM_SurfaceCoordinate *surface_coordinate,
00126 SRM_Long_Float azimuth,
00127 SRM_Long_Float false_x_origin,
00128 SRM_Long_Float false_y_origin,
00129 SRM_Long_Float offset_height,
00130 SRM_LocalTangentSpaceEuclidean *local_tangent_Euclidean_srf
00131 );
00132
00140 typedef SRM_Status_Code SRM_CreateSurfaceCoordinateEH
00141 (
00142 SRM_Object_Reference this_object,
00143 SRM_Long_Float first_coordinate_component,
00144 SRM_Long_Float second_coordinate_component,
00145 SRM_SurfaceCoordinate *new_coordinate
00146 );
00147
00153 typedef SRM_Status_Code SRM_DestroySurfaceCoordinateEH
00154 (
00155 SRM_Object_Reference this_object,
00156 SRM_Object_Reference coordinate
00157 );
00158
00166 typedef SRM_Status_Code SRM_EuclideanDistanceEH
00167 (
00168 SRM_Object_Reference this_object,
00169 const SRM_SurfaceCoordinate *point1_coordinate,
00170 const SRM_SurfaceCoordinate *point2_coordinate,
00171 SRM_Long_Float *distance
00172 );
00173
00181 typedef SRM_Status_Code SRM_GeodesicDistance
00182 (
00183 SRM_Object_Reference this_object,
00184 const SRM_SurfaceCoordinate *point1_coordinate,
00185 const SRM_SurfaceCoordinate *point2_coordinate,
00186 SRM_Long_Float *distance
00187 );
00188
00196 typedef SRM_Status_Code SRM_GetSurfaceCoordinateValuesEH
00197 (
00198 SRM_Object_Reference this_object,
00199 const SRM_SurfaceCoordinate *coordinate,
00200 SRM_Long_Float *first_coordinate_component,
00201 SRM_Long_Float *second_coordinate_component
00202 );
00203
00211 typedef SRM_Status_Code SRM_PromoteSurfaceCoordinateEH
00212 (
00213 SRM_Object_Reference this_object,
00214 const SRM_SurfaceCoordinate *surface_coordinate,
00215 SRM_Coordinate3D *coordinate
00216 );
00217
00225 typedef SRM_Status_Code SRM_VerticalOffset
00226 (
00227 SRM_Object_Reference this_object,
00228 SRM_DSS_Code dss_code,
00229 const SRM_SurfaceCoordinate *surface_coordinate,
00230 SRM_Long_Float *separation
00231 );
00232
00233 #ifdef __cplusplus
00234 }
00235 #endif
00236 #endif