Skip to content

Commit 60a4d53

Browse files
theScriptingEngineertheScriptingEngineer
authored andcommitted
Added functions and faceted functions as separate file
1 parent 6eeff38 commit 60a4d53

File tree

7 files changed

+1358
-46
lines changed

7 files changed

+1358
-46
lines changed

src/nxopentse/cad/__init__.py

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@
1212
create_intersect_feature, \
1313
get_faces_of_body, \
1414
get_area_faces_with_color, \
15-
get_area_faces_with_color, \
15+
get_smallest_face, \
16+
get_largest_face, \
1617
create_point, \
18+
create_non_timestamp_point, \
19+
create_non_timestamp_points, \
1720
create_line_between_two_points, \
1821
create_spline_through_points, \
1922
delete_feature,\
@@ -24,9 +27,27 @@
2427
get_axes_of_coordinate_system, \
2528
create_datum_axis, \
2629
create_bisector_datum_plane,\
27-
bisector_multiple_planes
30+
bisector_multiple_planes, \
31+
split_body_with_planes, \
32+
create_datum_at_distance, \
33+
get_distance_between_planes, \
34+
get_distance_to_plane, \
35+
divide_face_with_curve, \
36+
pattern_geometry, \
37+
subtract_bodies, \
38+
subtract_features
2839

2940
from .assemblies import get_all_bodies_in_component, \
3041
get_all_curves_in_component, \
3142
get_all_points_in_component, \
3243
create_component_from_bodies
44+
45+
from .faceted import local_offset_face, \
46+
get_facets_on_face, \
47+
get_facets_on_body, \
48+
get_average_normal, \
49+
get_facets_angle_above, \
50+
color_facets, \
51+
create_points_on_facets, \
52+
local_offset_facets, \
53+
smooth_facet_body

0 commit comments

Comments
 (0)