WRAPPER_API void set_Longitude(AngularValue &value)
Description
The set_Longitude method sets the AngularValue by which this PrimeMeridian deviates from the Greenwich Meridian.
Example
void PrimeMeridian_setLongitude()
{
GEOCALCPBW_NAMESPACE::PrimeMeridian pm;
pm.set_Name(L"Madrid");
GEOCALCPBW_NAMESPACE::AngularValue lon;
lon.set_InDegrees(-3.68793888888889);
pm.set_Longitude(lon);
}
Comments
0 comments
Please sign in to leave a comment.