Package com.solibri.smc.api.model
Interface GeographicCoordinate.Angle
- Enclosing interface:
- GeographicCoordinate
public static interface GeographicCoordinate.Angle
Internal Angle interface that defines degrees, minutes, and seconds.
- Since:
- 9.10.3
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the degrees of the angle.intReturns the micro seconds (millionth seconds) of the angle.intReturns the minutes of the angle.intReturns the seconds of the angle.
-
Method Details
-
getDegrees
int getDegrees()Returns the degrees of the angle.- Returns:
- the degrees of the angle
- Since:
- 9.10.3
-
getMinutes
int getMinutes()Returns the minutes of the angle.- Returns:
- the minutes of the angle
- Since:
- 9.10.3
-
getSeconds
int getSeconds()Returns the seconds of the angle.- Returns:
- the seconds of the angle
- Since:
- 9.10.3
-
getMicroSeconds
int getMicroSeconds()Returns the micro seconds (millionth seconds) of the angle.- Returns:
- the micro seconds (millionth seconds) of the angle
- Since:
- 9.10.3
-