NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Features_JoinCurvesBuilder.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++ 接口头文件,用于 JA API
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Features_JoinCurvesBuilder.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/GeometricUtilities_CurveOptions.hxx>
22
#include <NXOpen/Features_FeatureBuilder.hxx>
23
#include <NXOpen/Section.hxx>
24
#include <NXOpen/libnxopencpp_features_exports.hxx>
25
#ifdef _MSC_VER
26
#pragma warning(push)
27
#pragma warning(disable:4996)
28
#endif
29
#ifdef __GNUC__
30
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
31
#endif
32
namespace
NXOpen
33
{
34
namespace
Features
35
{
36
class
JoinCurvesBuilder
;
37
}
38
namespace
Features
39
{
40
class
FeatureBuilder
;
41
}
42
namespace
GeometricUtilities
43
{
44
class
CurveOptions
;
45
}
46
class
Section
;
47
namespace
Features
48
{
49
class
_JoinCurvesBuilderBuilder;
50
class
JoinCurvesBuilderImpl;
65
class
NXOPENCPP_FEATURESEXPORT JoinCurvesBuilder :
public
NXOpen::Features::FeatureBuilder
66
{
68
public
:
enum
OutputCurve
69
{
70
OutputCurveGeneral
,
71
OutputCurveCubic
,
72
OutputCurveQuintic
,
73
OutputCurveAdvanced
74
};
75
private
:
JoinCurvesBuilderImpl
* m_joincurvesbuilder_impl;
76
private
:
friend
class
_JoinCurvesBuilderBuilder;
77
protected
:
JoinCurvesBuilder
();
78
public
:
~JoinCurvesBuilder
();
82
public
:
NXOpen::Section
*
Section
83
(
84
);
88
public
:
NXOpen::GeometricUtilities::CurveOptions
*
CurveOptions
89
(
90
);
94
public
:
NXOpen::Features::JoinCurvesBuilder::OutputCurve
OutputCurveType
95
(
96
);
100
public
:
void
SetOutputCurveType
101
(
102
NXOpen::Features::JoinCurvesBuilder::OutputCurve
outputCurveType
103
);
107
public
:
int
MaximumDegree
108
(
109
);
113
public
:
void
SetMaximumDegree
114
(
115
int
maximumDegree
116
);
120
public
:
int
MaximumSegments
121
(
122
);
126
public
:
void
SetMaximumSegments
127
(
128
int
maximumSegments
129
);
133
public
:
double
DistanceTolerance
134
(
135
);
139
public
:
void
SetDistanceTolerance
140
(
141
double
distanceTolerance
142
);
146
public
:
double
AngleTolerance
147
(
148
);
152
public
:
void
SetAngleTolerance
153
(
154
double
angleTolerance
155
);
156
};
157
}
158
}
159
#ifdef _MSC_VER
160
#pragma warning(pop)
161
#endif
162
#ifdef __GNUC__
163
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
164
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
165
#endif
166
#endif
167
#undef EXPORTLIBRARY