diff --git a/20241104-fix-gom-vec3d-2022/.doctrees/environment.pickle b/20241104-fix-gom-vec3d-2022/.doctrees/environment.pickle index f0ed43e..af5898c 100644 Binary files a/20241104-fix-gom-vec3d-2022/.doctrees/environment.pickle and b/20241104-fix-gom-vec3d-2022/.doctrees/environment.pickle differ diff --git a/20241104-fix-gom-vec3d-2022/.doctrees/python_api/resource_api.doctree b/20241104-fix-gom-vec3d-2022/.doctrees/python_api/resource_api.doctree index 883cf12..1c56b45 100644 Binary files a/20241104-fix-gom-vec3d-2022/.doctrees/python_api/resource_api.doctree and b/20241104-fix-gom-vec3d-2022/.doctrees/python_api/resource_api.doctree differ diff --git a/20241104-fix-gom-vec3d-2022/.doctrees/python_api/scripted_elements_api.doctree b/20241104-fix-gom-vec3d-2022/.doctrees/python_api/scripted_elements_api.doctree index 70826e9..b5aeb3a 100644 Binary files a/20241104-fix-gom-vec3d-2022/.doctrees/python_api/scripted_elements_api.doctree and b/20241104-fix-gom-vec3d-2022/.doctrees/python_api/scripted_elements_api.doctree differ diff --git a/20241104-fix-gom-vec3d-2022/_sources/python_api/scripted_elements_api.md.txt b/20241104-fix-gom-vec3d-2022/_sources/python_api/scripted_elements_api.md.txt index 3aa0f24..c38fd09 100644 --- a/20241104-fix-gom-vec3d-2022/_sources/python_api/scripted_elements_api.md.txt +++ b/20241104-fix-gom-vec3d-2022/_sources/python_api/scripted_elements_api.md.txt @@ -119,7 +119,7 @@ On success the function must return True, otherwise False. ```{code-block} python result = (x,y,z) -result = gom.Vec3D +result = gom.Vec3d ``` ### Distance @@ -129,7 +129,7 @@ result = gom.Vec3D ```{code-block} python result = { 'point1': (x,y,z), 'point2': (x,y,z) } -result = { 'point1': gom.Vec3D, 'point2': gom.Vec3D } +result = { 'point1': gom.Vec3d, 'point2': gom.Vec3d } ``` ### Value Element @@ -147,7 +147,7 @@ result = x :Result: A center point, direction vector and radius (double) ```{code-block} python -result = { 'center' : gom.Vec3D, 'direction' : gom.Vec3D, 'radius' : double } +result = { 'center' : gom.Vec3d, 'direction' : gom.Vec3d, 'radius' : double } ``` ### Curve @@ -156,7 +156,7 @@ result = { 'center' : gom.Vec3D, 'direction' : gom.Vec3D, 'radius' : double } :Result: A curve can be made up by an array of subcurves. Each subcurve is a polyline. A closed curve will be created, if first point = last point. ```{code-block} python -result = [ { 'points': [gom.Vec3D, gom.Vec3D, ...] } ] +result = [ { 'points': [gom.Vec3d, gom.Vec3d, ...] } ] ``` ### Surface Curve @@ -166,7 +166,7 @@ result = [ { 'points': [gom.Vec3D, gom.Vec3D, ...] } ] % ```{code-block} python % # This does not work! -% result = [ { 'points': [ gom.Vec3D, gom.Vec3D, ... ], 'normals': [(x,y,z)] } ] +% result = [ { 'points': [ gom.Vec3d, gom.Vec3d, ... ], 'normals': [(x,y,z)] } ] % ``` % :::{caution} @@ -202,7 +202,7 @@ result = { :Result: A set of points. The 'normals 'attribute is optional. ```{code-block} python -result = { 'points' : [ gom.Vec3D, gom.Vec3D, ... ] , 'normals' : [ gom.Vec3D, gom.Vec3D, ... ] } +result = { 'points' : [ gom.Vec3d, gom.Vec3d, ... ] , 'normals' : [ gom.Vec3d, gom.Vec3d, ... ] } ``` ### Surface diff --git a/20241104-fix-gom-vec3d-2022/genindex.html b/20241104-fix-gom-vec3d-2022/genindex.html index ef0b90f..c56167f 100644 --- a/20241104-fix-gom-vec3d-2022/genindex.html +++ b/20241104-fix-gom-vec3d-2022/genindex.html @@ -291,7 +291,7 @@
result = (x,y,z)
-result = gom.Vec3D
+result = gom.Vec3d
result = { 'point1': (x,y,z), 'point2': (x,y,z) }
-result = { 'point1': gom.Vec3D, 'point2': gom.Vec3D }
+result = { 'point1': gom.Vec3d, 'point2': gom.Vec3d }
A center point, direction vector and radius (double)
-result = { 'center' : gom.Vec3D, 'direction' : gom.Vec3D, 'radius' : double }
+result = { 'center' : gom.Vec3d, 'direction' : gom.Vec3d, 'radius' : double }
@@ -411,7 +411,7 @@ Curve
A curve can be made up by an array of subcurves. Each subcurve is a polyline. A closed curve will be created, if first point = last point.
-result = [ { 'points': [gom.Vec3D, gom.Vec3D, ...] } ]
+result = [ { 'points': [gom.Vec3d, gom.Vec3d, ...] } ]
@@ -464,7 +464,7 @@ Point CloudA set of points. The ‘normals ‘attribute is optional.
-result = { 'points' : [ gom.Vec3D, gom.Vec3D, ... ] , 'normals' : [ gom.Vec3D, gom.Vec3D, ... ] }
+result = { 'points' : [ gom.Vec3d, gom.Vec3d, ... ] , 'normals' : [ gom.Vec3d, gom.Vec3d, ... ] }
@@ -675,7 +675,7 @@ Scalar Curve
Imprint
-
+
diff --git a/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces.html b/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces.html
index 59c74a6..a47370b 100644
--- a/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces.html
+++ b/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces.html
@@ -141,7 +141,7 @@ data_interfaces
Imprint
-
+
diff --git a/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces/check_results_data_array.html b/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces/check_results_data_array.html
index 8a89935..6250c1c 100644
--- a/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces/check_results_data_array.html
+++ b/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces/check_results_data_array.html
@@ -162,7 +162,7 @@ Related
Imprint
-
+
diff --git a/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces/volume_section_image_data.html b/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces/volume_section_image_data.html
index b7dce1c..2520fc0 100644
--- a/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces/volume_section_image_data.html
+++ b/20241104-fix-gom-vec3d-2022/python_examples/data_interfaces/volume_section_image_data.html
@@ -157,7 +157,7 @@ Related
Imprint
-
+
diff --git a/20241104-fix-gom-vec3d-2022/python_examples/dialog_widgets.html b/20241104-fix-gom-vec3d-2022/python_examples/dialog_widgets.html
index 2223801..d135162 100644
--- a/20241104-fix-gom-vec3d-2022/python_examples/dialog_widgets.html
+++ b/20241104-fix-gom-vec3d-2022/python_examples/dialog_widgets.html
@@ -145,7 +145,7 @@ dialog_widgets
Imprint