We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a460527 commit d8d2dc9Copy full SHA for d8d2dc9
src/gh/components/DF_cloud_to_cloud_distance/code.py
@@ -17,12 +17,12 @@
17
18
import diffCheck.df_util
19
20
-class CloudToMeshDistance(component):
+class CloudToCloudDistance(component):
21
def RunScript(self,
22
i_cloud_source: rg.PointCloud,
23
i_cloud_target: rg.PointCloud,
24
25
- ) -> [float]:
+ )
26
"""
27
The cloud-to-cloud component computes the distance between each point in the source point cloud and its nearest neighbour in thr target point cloud.
28
@@ -52,7 +52,7 @@ def RunScript(self,
52
53
54
if __name__ == "__main__":
55
- com = CloudToMeshDistance(component)
+ com = CloudToCloudDistance(component)
56
o_distances = com.RunScript(
57
i_cloud_source,
58
i_cloud_target
0 commit comments