NX Open C++ 参考指南 2406 v1.1
载入中...
搜索中...
未找到
SketchTypes.hxx
1//--------------------------------------------------------------------------
2// Copyright 2024 Siemens
3//--------------------------------------------------------------------------
4// JA API 的 C++ 接口头文件
5//--------------------------------------------------------------------------
6//
7// 源文件:
8// SketchTypes.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/ugmath.hxx>
22#ifdef _MSC_VER
23#pragma warning(push)
24#pragma warning(disable:4996)
25#endif
26#ifdef __GNUC__
27#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
28#endif
29namespace NXOpen
30{
31 class NXObject;
48
49 struct SketchOperationgeometry
50 {
54 public: int PointIndex;
61 public: SketchOperationgeometry() :
62 Geometry(),
64 PointIndex(),
65 HelpPoint(),
66 View()
67 {
68 }
70 public: SketchOperationgeometry(NXOpen::NXObject * geometryInitial ,
71 NXOpen::SketchControlPoint pointTypeInitial ,
73 int pointIndexInitial ,
78 const NXOpen::Point3d &helpPointInitial ,
79 NXOpen::NXObject * viewInitial ) :
80 Geometry(geometryInitial),
81 PointType(pointTypeInitial),
82 PointIndex(pointIndexInitial),
83 HelpPoint(helpPointInitial),
84 View(viewInitial)
85 {
86 }
87 };
88}
89#ifdef _MSC_VER
90#pragma warning(pop)
91#endif
92#ifdef __GNUC__
93#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
94#pragma GCC diagnostic warning "-Wdeprecated-declarations"
95#endif
96#endif