POST
|
See the IConstructCircularArc interface for the built-in ArcObjects methods.
... View more
10-01-2012
01:18 PM
|
0
|
0
|
4
|
POST
|
You can get the extent of the feature class from IGeoDataset.Extent. See the developer help for more info on what the envelope it returns actually is.
... View more
09-25-2012
06:22 AM
|
0
|
0
|
3
|
POST
|
Try the IPolygon4::ExteriorRingBag Dim pPolygon As ESRI.ArcGIS.Geometry.IPolygon4 = pPolygonGeometry Dim pGeoBag As ESRI.ArcGIS.Geometry.IGeometryBag = pPolygon.ExteriorRingBag Dim pGeoCollection As ESRI.ArcGIS.Geometry.IGeometryCollection = pGeoBag MsgBox(pGeoCollection.GeometryCount)
... View more
08-16-2012
12:54 PM
|
0
|
0
|
21
|
POST
|
An obtuse triangle is a triangle in which one of the angles is an obtuse angle. The returned angle is the smaller angle formed by an imaginary line from the first to the second point and the second to the third point. Therefore, you may need to check all three angles to decide. The measure of the constructed angle is between -Pi and Pi. The conversion from is correct. Should I just multiply by 180/pi to convert from radians to degrees and see if its greater than 90 degrees??
... View more
07-20-2012
10:06 AM
|
0
|
0
|
6
|
POST
|
No. The order of the points in the point collection match the order in which they appear in the polyline or polygon that they represent. For a polygon, outer rings will have points ordered clockwise and interior rings will have points ordered counter-clockwise.
... View more
07-16-2012
10:06 AM
|
0
|
0
|
2
|
POST
|
Dan, Personally I would have used the IConstructCircularArc interface and the method ConstructCircle but as always there are several ways to do things. You can then Cut the circle with ITopologicalOperator using the Cut method. You will need to create a pointer of type IPolyline to the circle geometry. Duncan
... View more
07-09-2012
08:07 AM
|
0
|
0
|
1
|
POST
|
You could always use the Parallelogram law disussed in wikipedia here ?
... View more
04-13-2012
07:44 AM
|
0
|
0
|
2
|
POST
|
It seems your are using ArcObjects and not the WPF SDK. You might get better answers by posting your question on this forum .
... View more
03-27-2012
01:42 AM
|
0
|
0
|
1
|
POST
|
using featureCursor.NextFeature() in a loop will retrieve all the features. Use ITopologicalOperator.ConstructUnion method to merge the geometries. IGeometryCollection unionCol = new GeometryBag() as IGeometryCollection; ITopologicalOperator unionPoly = new PolygonClass() as ITopologicalOperator; object Missing = Type.Missing; IFeature pFeature = featureCursor.NextFeature(); while(pFeature!=null) { IGeometry pGeometry = pFeature.Shape; unionCol.AddGeometry(pGeometry , ref Missing, ref Missing); pFeature = featureCursor.NextFeature(); } unionPoly.ConstructUnion((IEnumGeometry)unionCol);
... View more
01-26-2012
10:25 AM
|
0
|
0
|
1
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|