forked from nxsofsys/pythonocc-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVisualization.i
More file actions
99 lines (91 loc) · 3.06 KB
/
Visualization.i
File metadata and controls
99 lines (91 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
##Copyright 2008-2016 Thomas Paviot (tpaviot@gmail.com)
##
##This file is part of pythonOCC.
##
##pythonOCC is free software: you can redistribute it and/or modify
##it under the terms of the GNU Lesser General Public License as published by
##the Free Software Foundation, either version 3 of the License, or
##(at your option) any later version.
##
##pythonOCC is distributed in the hope that it will be useful,
##but WITHOUT ANY WARRANTY; without even the implied warranty of
##MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
##GNU General Public License for more details.
##
##You should have received a copy of the GNU Lesser General Public License
##along with pythonOCC. If not, see <http://www.gnu.org/licenses/>.
*/
%module Visualization;
%{
#include <Visualization.h>
#include <Tesselator.h>
#include <Standard.hxx>
%}
%include ../SWIG_files/common/ExceptionCatcher.i
%include "python/std_string.i"
%include "typemaps.i"
%typemap(out) float [ANY] {
int i;
$result = PyList_New($1_dim0);
for (i = 0; i < $1_dim0; i++) {
PyObject *o = PyFloat_FromFloat((float) $1[i]);
PyList_SetItem($result,i,o);
}
}
enum theTextureMappingRule {
atCube,
atNormal,
atNormalAutoScale
};
%apply int& OUTPUT {int& v1, int& v2, int& v3}
%apply float& OUTPUT {float& x, float& y, float& z}
class Tesselator {
public:
Tesselator(TopoDS_Shape aShape,
theTextureMappingRule aTxtMapType,
float anAutoScaleSizeOnU,
float anAutoScaleSizeOnV,
float aDeviation,
float aUOrigin,
float aVOrigin,
float aURepeat,
float aVRepeat,
float aScaleU,
float aScaleV,
float aRotationAngle);
Tesselator(TopoDS_Shape aShape);
%feature("kwargs") Compute;
void Compute(bool uv_coords=true, bool compute_edges=false, float mesh_quality=1.0);
void GetVertex(int ivert, float& x, float& y, float& z);
void GetNormal(int inorm, float& x, float& y, float& z);
void GetTriangleIndex(int triangleIdx, int& v1, int& v2, int& v3);
void GetEdgeVertex(int iEdge, int ivert, float& x, float& y, float& z);
float* VerticesList();
int ObjGetTriangleCount();
int ObjGetVertexCount();
int ObjGetNormalCount();
int ObjGetEdgeCount();
int ObjEdgeGetVertexCount(int iEdge);
std::string ExportShapeToX3DIndexedFaceSet();
std::string ExportShapeToThreejsJSONString(char *shape_function_name, bool export_uv=false);
%feature("kwargs") ExportShapeToX3D;
void ExportShapeToX3D(char *filename, int diffR=1, int diffG=0, int diffB=0);
};
class Display3d {
public:
%feature("autodoc", "1");
Display3d();
%feature("autodoc", "1");
~Display3d();
%feature("autodoc", "1");
void Init(const long handle);
%feature("autodoc", "1");
Handle_V3d_View& GetView();
%feature("autodoc", "1");
Handle_V3d_Viewer& GetViewer();
%feature("autodoc", "1");
Handle_AIS_InteractiveContext GetContext();
%feature("autodoc", "1");
void Test();
};