NX Open C++ 参考指南 2406 v1.1
载入中...
搜索中...
未找到
Motion_ArticulationControl.hxx
1//--------------------------------------------------------------------------
2// Copyright 2024 Siemens
3//--------------------------------------------------------------------------
4// JA API的C++接口头文件
5//--------------------------------------------------------------------------
6//
7// 源文件:
8// Motion_ArticulationControl.ja
9//
10// 生成工具:
11// apiwrap
12//
13// 警告:
14// 此文件由程序自动生成 - 请勿手动编辑
15//
16#pragma once
17#include <NXOpen/NXDeprecation.hxx>
18#include <vector>
19#include <NXOpen/NXString.hxx>
20#include <NXOpen/Callback.hxx>
21#include <NXOpen/Motion.hxx>
22#include <NXOpen/Motion_PostControl.hxx>
23#include <NXOpen/libnxopencpp_motion_exports.hxx>
24#ifdef _MSC_VER
25#pragma warning(push)
26#pragma warning(disable:4996)
27#endif
28#ifdef __GNUC__
29#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
30#endif
31namespace NXOpen
32{
33 namespace Motion
34 {
36 }
37 namespace Motion
38 {
39 class Joint;
40 }
41 namespace Motion
42 {
43 class PostControl;
44 }
45 class Unit;
46 namespace Motion
47 {
48 class _ArticulationControlBuilder;
49 class ArticulationControlImpl;
53 class NXOPENCPP_MOTIONEXPORT ArticulationControl : public NXOpen::Motion::PostControl
54 {
55 private: ArticulationControlImpl * m_articulationcontrol_impl;
56 private: friend class _ArticulationControlBuilder;
57 protected: ArticulationControl();
58 public: ~ArticulationControl();
63 (
64 NXOpen::Motion::Joint * jointTag ,
65 int* currentStep ,
66 double* displacement ,
67 NXOpen::Unit ** displacementUnit
68 );
77 public: void ArticulationSolve
78 (
79 int numSteps ,
80 const std::vector<NXOpen::Motion::Joint *> & jointTags ,
81 const std::vector<double> & stepSize ,
82 const std::vector<NXOpen::Unit *> & stepSizeUnit
83 );
87 public: void ArticulationSolve
88 (
89 const std::vector<NXOpen::Motion::Joint *> & jointTags ,
90 const std::vector<double> & displacement ,
91 const std::vector<NXOpen::Unit *> & displacementUnit
92 );
97 (
98 );
103 (
104 );
108 public: void Stop
109 (
110 );
114 public: void Finish
115 (
116 );
121 (
122 std::vector<NXOpen::Motion::Joint *> & jointTags
123 );
127 public: bool JointsLimits
128 (
129 );
133 public: void SetJointsLimits
134 (
135 bool jointLimits
136 );
140 public: int Delay
141 (
142 );
146 public: void SetDelay
147 (
148 int delay
149 );
154 (
155 );
159 public: void SetActiveView
160 (
162 );
163 };
164 }
165}
166#ifdef _MSC_VER
167#pragma warning(pop)
168#endif
169#ifdef __GNUC__
170#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
171#pragma GCC diagnostic warning "-Wdeprecated-declarations"
172#endif
173#endif
174#undef EXPORTLIBRARY