NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
DatumAxis.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// DatumAxis.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/DisplayableObject.hxx>
22
#include <NXOpen/IDatum.hxx>
23
#include <NXOpen/ILocation.hxx>
24
#include <NXOpen/INXObject.hxx>
25
#include <NXOpen/IOrientation.hxx>
26
#include <NXOpen/IReferenceAxis.hxx>
27
#include <NXOpen/ugmath.hxx>
28
#include <NXOpen/libnxopencpp_exports.hxx>
29
#ifdef _MSC_VER
30
#pragma warning(push)
31
#pragma warning(disable:4996)
32
#endif
33
#ifdef __GNUC__
34
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
35
#endif
36
namespace
NXOpen
37
{
38
class
DatumAxis
;
39
namespace
Assemblies
40
{
41
class
Component
;
42
}
43
class
BasePart
;
44
class
DisplayableObject
;
45
namespace
Features
46
{
47
class
Feature
;
48
}
49
class
IDatum
;
50
class
ILocation
;
51
class
INXObject
;
52
class
IOrientation
;
53
class
IReferenceAxis
;
54
class
_DatumAxisBuilder;
55
class
DatumAxisImpl;
59
class
NXOPENCPPEXPORT DatumAxis :
public
NXOpen::DisplayableObject
,
public
virtual
NXOpen::IReferenceAxis
,
public
virtual
NXOpen::ILocation
,
public
virtual
NXOpen::IOrientation
,
public
virtual
NXOpen::IDatum
60
{
62
public
:
enum
Indices
63
{
64
IndicesUnknown
,
65
IndicesXAxis
,
66
IndicesYAxis
,
67
IndicesZAxis
68
};
69
private
:
DatumAxisImpl
* m_datumaxis_impl;
70
private
:
friend
class
_DatumAxisBuilder;
71
protected
:
DatumAxis
();
72
public
:
~DatumAxis
();
76
public
:
void
SetEndPoints
77
(
78
const
NXOpen::Point3d
& start ,
79
const
NXOpen::Point3d
& end
80
);
84
public
:
NXOpen::Point3d
Origin
85
(
86
);
90
public
:
NXOpen::Vector3d
Direction
91
(
92
);
96
public
:
void
GetEndPoints
97
(
98
NXOpen::Point3d
* start ,
99
NXOpen::Point3d
* end
100
);
104
public
:
NXOpen::Features::Feature
*
Feature
105
(
106
);
107
};
108
}
109
#ifdef _MSC_VER
110
#pragma warning(pop)
111
#endif
112
#ifdef __GNUC__
113
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
114
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
115
#endif
116
#endif
117
#undef EXPORTLIBRARY