1. ITransform2D接口的Transform方法:
1 [C#]public void Transform (
2 esriTransformDirection direction,
3 ITransformation transformation);
大部分的Geometry对象都实现了ITransform接口,比如:IPoint,IPolygon的基类
ITransformation是策略的抽象接口,如下:
2. ITransform3D接口的Transform3D方法:
1 [C#]public void Transform3D (
2 esriTransformDirectiondirection,
3 ITransformation3Dtransformation);
ITransformation3D是策略的抽象接口,如下:
原文:http://www.cnblogs.com/yhlx125/p/3547918.html