From 560d8eddb972518ebc8464b5990d5d1e11c9a606 Mon Sep 17 00:00:00 2001 From: Andrea Settimi Date: Sun, 19 May 2024 15:43:27 +0200 Subject: [PATCH 1/3] ADD: pointcloud datatype guid in componentizer --- componentize_cpy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/componentize_cpy.py b/componentize_cpy.py index cdffe82..006bb87 100644 --- a/componentize_cpy.py +++ b/componentize_cpy.py @@ -48,6 +48,7 @@ surface="f4070a37-c822-410f-9057-100d2e22a22d", subd="20f4ca9c-6c90-4fd6-ba8a-5bf9ca79db08", brep="2ceb0405-fdfe-403d-a4d6-8786da45fb9d", + pointcloud="d73c9fb0-365d-458f-9fb5-f4141399311f", geometrybase="c37956f4-d39c-49c7-af71-1e87f8031b26" ) @@ -405,4 +406,4 @@ def create_ghuser_component(source, target, version=None, prefix=None): target = os.path.join(targetdir, d + ".ghuser") print(" [ ] {}\r".format(d), end="") create_ghuser_component(source, target, args.version, args.prefix) - print(" [x] {} => {}".format(d, target)) \ No newline at end of file + print(" [x] {} => {}".format(d, target)) From c6c45b3b87a17ad166700e17bb4f63950134509d Mon Sep 17 00:00:00 2001 From: Andrea Settimi Date: Sun, 19 May 2024 15:44:12 +0200 Subject: [PATCH 2/3] UPDATED: documentation for pcd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a573cb..6715451 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,7 @@ Supports a small set of templated variables that can be used in code: string values (their respective Guids are not listed here for readability): `none`, `ghdoc`, `float`, `bool`, `int`, `complex`, `str`, `datetime`, `guid`, `color`, `point`, `vector`, `plane`, `interval`, `uvinterval`, `box`, `transform`, - `line`, `circle`, `arc`, `polyline`, `rectangle`, `curve`, `mesh`, `surface`, `subd`, `brep`, `geometrybase`. + `line`, `circle`, `arc`, `polyline`, `rectangle`, `curve`, `mesh`, `surface`, `subd`, `brep`, `pointcloud", `geometrybase`. * `reverse`: **(optional)** Defines whether data inside the parameter is reversed. Defaults to `False`. * `simplify`: **(optional)** Defines whether data inside the parameter is simplified. Defaults to `False`. * `flatten`: **(optional)** Defines whether data inside the parameter is flattened. Mutually exclusive with `graft`. Defaults to `False`. From 2d0ac10a1903548f521c7c79db78a8305bd6e122 Mon Sep 17 00:00:00 2001 From: Andrea Settimi Date: Sun, 19 May 2024 15:44:34 +0200 Subject: [PATCH 3/3] FIX: typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6715451..9d6e392 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,7 @@ Supports a small set of templated variables that can be used in code: string values (their respective Guids are not listed here for readability): `none`, `ghdoc`, `float`, `bool`, `int`, `complex`, `str`, `datetime`, `guid`, `color`, `point`, `vector`, `plane`, `interval`, `uvinterval`, `box`, `transform`, - `line`, `circle`, `arc`, `polyline`, `rectangle`, `curve`, `mesh`, `surface`, `subd`, `brep`, `pointcloud", `geometrybase`. + `line`, `circle`, `arc`, `polyline`, `rectangle`, `curve`, `mesh`, `surface`, `subd`, `brep`, `pointcloud`, `geometrybase`. * `reverse`: **(optional)** Defines whether data inside the parameter is reversed. Defaults to `False`. * `simplify`: **(optional)** Defines whether data inside the parameter is simplified. Defaults to `False`. * `flatten`: **(optional)** Defines whether data inside the parameter is flattened. Mutually exclusive with `graft`. Defaults to `False`.