AnyCAD C++ API  2018
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义 
APIWorkingPlane.h
浏览该文件的文档.
1 //Public API. Powered by AnyCAD.
2 
3 #ifndef _APIWorkingPlane_H_
4 #define _APIWorkingPlane_H_
5 
6 #include "APIObjectDef.h"
7 
8 namespace AnyCAD{ namespace API
9 {
10  class GridNode;
19  {
21  public:
26  Vector3 GetPosition () const;
31  void SetPosition (const Vector3& pos) ;
36  void SetDirection (const Vector3& dir) ;
41  Vector3 GetDirection () const;
46  Vector3 GetXDirection () const;
51  Vector3 GetYDirection () const;
56  void SetCoordinate (const Coordinate3& coord) ;
61  GridNode GetGridNode () const;
66  void SetGridNode (const GridNode& node) ;
67  };//WorkingPlane;
68 }}//API
69 
70 #endif //_APIWorkingPlane_H_
#define AnyPlatformAPI_API
Definition: AnyPlatformAPI.h:8
工作平面
Definition: APIWorkingPlane.h:18
Coordinate.
Definition: APIMath.h:416
The Grid Node. -since R2015.
Definition: APIGridNode.h:19
#define DECLARE_APIOBJECT(className)
Definition: APIObjectDef.h:10
Point or vector.
Definition: APIMath.h:37