com.esri.arcgis.geometry
Interface IConstructGeodetic

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
IConstructGeodeticProxy, Polyline

public interface IConstructGeodetic
extends java.io.Serializable

COM Interface 'IConstructGeodetic'. Generated 3/19/2015 1:20:58 PM from 'C:\ArcGIS\COM\esriGeometry.olb'

Description: 'Provides access to members that construct various kinds of geodetic curves.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDbda1eef8_15a0_47cf_91a8_06d4287086ce
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void constructGeodesicCircle(IPoint centerPoint, ILinearUnit linearUnit, double radius, int densifyMethod, double densifyParameter)
          constructs a geodesic circle centered on the specified point.
 void constructGeodesicEllipse(IPoint centerPoint, ILinearUnit linearUnit, double semiMajorAxisLength, double semiMinorAxisLength, double semiMajorAxisAzimuth, int densifyMethod, double densifyParameter)
          constructs a geodesic ellipse with origin at the specified point and semi major axis oriented according to the specified azimuth.
 void constructGeodeticLineFromDistance(int geodeticLineType, IPoint fromPoint, ILinearUnit linearUnit, double length, double azimuth, int densifyMethod, double densifyParameter)
          constructs a geodetic line with the specified length and azimuth.
 void constructGeodeticLineFromPoints(int geodeticLineType, IPoint fromPoint, IPoint toPoint, ILinearUnit linearUnit, int densifyMethod, double densifyParameter)
          Constructs a geodetic line connecting the specified points.
 

Field Detail

IIDbda1eef8_15a0_47cf_91a8_06d4287086ce

static final int IIDbda1eef8_15a0_47cf_91a8_06d4287086ce
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

constructGeodeticLineFromPoints

void constructGeodeticLineFromPoints(int geodeticLineType,
                                     IPoint fromPoint,
                                     IPoint toPoint,
                                     ILinearUnit linearUnit,
                                     int densifyMethod,
                                     double densifyParameter)
                                     throws java.io.IOException,
                                            AutomationException
Constructs a geodetic line connecting the specified points. The 'by length' and 'by deviation' densification options are supported.

Parameters:
geodeticLineType - A com.esri.arcgis.geometry.esriGeodeticType constant (in)
fromPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
toPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
linearUnit - A reference to a com.esri.arcgis.geometry.ILinearUnit (in)
densifyMethod - A com.esri.arcgis.geometry.esriCurveDensifyMethod constant (in)
densifyParameter - The densifyParameter (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

constructGeodeticLineFromDistance

void constructGeodeticLineFromDistance(int geodeticLineType,
                                       IPoint fromPoint,
                                       ILinearUnit linearUnit,
                                       double length,
                                       double azimuth,
                                       int densifyMethod,
                                       double densifyParameter)
                                       throws java.io.IOException,
                                              AutomationException
constructs a geodetic line with the specified length and azimuth. The 'by length' and 'by deviation' densification options are supported.

Parameters:
geodeticLineType - A com.esri.arcgis.geometry.esriGeodeticType constant (in)
fromPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
linearUnit - A reference to a com.esri.arcgis.geometry.ILinearUnit (in)
length - The length (in)
azimuth - The azimuth (in)
densifyMethod - A com.esri.arcgis.geometry.esriCurveDensifyMethod constant (in)
densifyParameter - The densifyParameter (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

constructGeodesicCircle

void constructGeodesicCircle(IPoint centerPoint,
                             ILinearUnit linearUnit,
                             double radius,
                             int densifyMethod,
                             double densifyParameter)
                             throws java.io.IOException,
                                    AutomationException
constructs a geodesic circle centered on the specified point. All densification options are supported (length, angle, deviation).

Parameters:
centerPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
linearUnit - A reference to a com.esri.arcgis.geometry.ILinearUnit (in)
radius - The radius (in)
densifyMethod - A com.esri.arcgis.geometry.esriCurveDensifyMethod constant (in)
densifyParameter - The densifyParameter (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

constructGeodesicEllipse

void constructGeodesicEllipse(IPoint centerPoint,
                              ILinearUnit linearUnit,
                              double semiMajorAxisLength,
                              double semiMinorAxisLength,
                              double semiMajorAxisAzimuth,
                              int densifyMethod,
                              double densifyParameter)
                              throws java.io.IOException,
                                     AutomationException
constructs a geodesic ellipse with origin at the specified point and semi major axis oriented according to the specified azimuth. The 'by angle' and 'by deviation' densification options are supported.

Parameters:
centerPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
linearUnit - A reference to a com.esri.arcgis.geometry.ILinearUnit (in)
semiMajorAxisLength - The semiMajorAxisLength (in)
semiMinorAxisLength - The semiMinorAxisLength (in)
semiMajorAxisAzimuth - The semiMajorAxisAzimuth (in)
densifyMethod - A com.esri.arcgis.geometry.esriCurveDensifyMethod constant (in)
densifyParameter - The densifyParameter (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.