Exemple #1
0
 /// <summary>
 /// Creates a GeometryEditor which edits geometries using
 /// a given <see cref="GeometryEditor.IGeometryEditorOperation"/>
 /// and the same <see cref="IGeometryFactory"/> as the input Geometry.
 /// </summary>
 /// <param name="operation">The edit operation to use.</param>
 public GeometryEditorEx(GeometryEditor.IGeometryEditorOperation operation)
 {
     _operation = operation;
 }
Exemple #2
0
 /// <summary>
 /// Creates a GeometryEditor which edits geometries using
 /// a given <see cref="GeometryEditor.IGeometryEditorOperation"/>
 /// and the given <see cref="IGeometryFactory"/>.
 /// </summary>
 /// <param name="operation">The edit operation to use.</param>
 /// <param name="targetFactory">The GeometryFactory to create  edited Geometrys with.</param>
 public GeometryEditorEx(GeometryEditor.IGeometryEditorOperation operation, IGeometryFactory targetFactory)
 {
     _operation     = operation;
     _targetFactory = targetFactory;
 }