NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Curve.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// JA API的C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Curve.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/Drawings_DraftingCurveInfo.hxx>
22
#include <NXOpen/GeometricUtilities_CurveLocation.hxx>
23
#include <NXOpen/IBaseCurve.hxx>
24
#include <NXOpen/ICurve.hxx>
25
#include <NXOpen/INXObject.hxx>
26
#include <NXOpen/IProfile.hxx>
27
#include <NXOpen/SmartObject.hxx>
28
#include <NXOpen/ugmath.hxx>
29
#include <NXOpen/libnxopencpp_exports.hxx>
30
#ifdef _MSC_VER
31
#pragma warning(push)
32
#pragma warning(disable:4996)
33
#endif
34
#ifdef __GNUC__
35
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
36
#endif
37
namespace
NXOpen
38
{
39
class
Curve
;
40
namespace
Assemblies
41
{
42
class
Component
;
43
}
44
class
BasePart
;
45
namespace
Drawings
46
{
47
class
DraftingCurveInfo
;
48
}
49
class
IBaseCurve
;
50
class
ICurve
;
51
class
INXObject
;
52
class
IProfile
;
53
class
SmartObject
;
54
class
_CurveBuilder;
55
class
CurveImpl;
59
class
NXOPENCPPEXPORT Curve :
public
NXOpen::SmartObject
,
public
virtual
NXOpen::ICurve
,
public
virtual
NXOpen::IProfile
60
{
61
private
:
CurveImpl
* m_curve_impl;
62
private
:
friend
class
_CurveBuilder;
63
protected
: Curve();
64
public
: ~Curve();
68
public
:
virtual
NXOpen::Drawings::DraftingCurveInfo
*
GetDraftingCurveInfo
69
(
70
);
74
public
:
virtual
bool
IsDraftingCurve
75
(
76
);
80
public
:
virtual
double
GetLength
81
(
82
);
86
public
:
virtual
bool
IsReference
87
(
88
);
92
public
:
virtual
std::vector<NXOpen::GeometricUtilities::CurveLocation>
GetLocations
93
(
94
);
95
};
96
}
97
#ifdef _MSC_VER
98
#pragma warning(pop)
99
#endif
100
#ifdef __GNUC__
101
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
102
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
103
#endif
104
#endif
105
#undef EXPORTLIBRARY