NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Point.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Point.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/IDatum.hxx>
22
#include <NXOpen/ILocation.hxx>
23
#include <NXOpen/INXObject.hxx>
24
#include <NXOpen/IOrientation.hxx>
25
#include <NXOpen/SmartObject.hxx>
26
#include <NXOpen/PointCollection.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
Point
;
39
namespace
Assemblies
40
{
41
class
Component
;
42
}
43
class
BasePart
;
44
class
Curve
;
45
namespace
Features
46
{
47
class
Feature
;
48
}
49
class
IBasePlane
;
50
class
IDatum
;
51
class
ILocation
;
52
class
INXObject
;
53
class
IOrientation
;
54
class
NXObject
;
55
class
Offset
;
56
class
SmartObject
;
57
class
_PointBuilder;
58
class
PointImpl;
64
class
NXOPENCPPEXPORT Point :
public
NXOpen::SmartObject
,
public
virtual
NXOpen::IOrientation
,
public
virtual
NXOpen::ILocation
,
public
virtual
NXOpen::IDatum
65
{
67
public
:
enum
Type
68
{
69
TypeInferred
,
70
TypeCursorPos
,
71
TypeExistingPt
,
72
TypeEndPt
,
73
TypeControlPt
,
74
TypeIntersectPt
,
75
TypeCenterPt
,
76
TypeAnglePt
,
77
TypeQuadrantPt
,
78
TypeOnCurvePt
,
79
TypeOnSurfacePt
,
80
TypeBetweenPts
,
81
TypeSplinePolePt
,
82
TypeSplineDefiningPt
,
83
TypeExpressionPt
,
84
TypeShipCoordinatesPt
,
85
TypeFixed
,
86
TypeOffset
,
87
TypeOffsetAlongCurve
,
88
TypeUndefined
89
};
90
private
:
PointImpl
* m_point_impl;
91
private
:
friend
class
_PointBuilder;
92
protected
:
Point
();
93
public
:
~Point
();
97
public
:
NXOpen::Point3d
Coordinates
98
(
99
);
103
public
:
void
SetCoordinates
104
(
105
const
NXOpen::Point3d
& coordinates
106
);
110
public
:
void
SetPointOnCurveTParameterFixed
111
(
112
bool
isFixed
113
);
117
public
:
bool
IsReference
118
(
119
);
120
};
121
}
122
#ifdef _MSC_VER
123
#pragma warning(pop)
124
#endif
125
#ifdef __GNUC__
126
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
127
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
128
#endif
129
#endif
130
#undef EXPORTLIBRARY