We are having a problem creating panels in curved surfaces as it creates a lot of different variations.
We tried using massing in revit > divide surface and constrict the UV Grids to a certain formula so my adaptive triangle component will always be uniform in size. But obviously, this only is applicable when the surface is “regurlarly” curved.
Also tried lunchbox panels but I guess it does the same…
What we want is: From a curve, we divide it into grids such that it generates equal chord sizes - so now it will not necessarily be really following the exact curve coz it will prioritize the modularity instead. And from there, we will just add out components.
I am not very sure how to best explain this - but basically we want this constructed using just 3-4 (or 1) variations instead of thousands…
Thank you all for the response. I will look at the links - but just to show you, at the moment, I have this.
(Btw, I am stuck now. Any ideas on how to create panels out of these points?)
Basically, I just created a model line in Revit, transformmed it into a curve divided into segments with equal chords in Dynamo, then created a polycurve from the points and repeated it along the y axis (used equilateral triangle formula to determine the distance).
Double curves would be nice but I feel like it is too impossible for such a feat so… yeah.
I managed to find Ampersand package which creates a points lists using a list of points.
Right now the panels don’t have equal side but they are modular so I guess this will work for now…
Correct me if I am wrong, but would what you need basically be to split a nurbs curve or polycurve into lines, but each line has to be equal length after the split.
So it is not enough to split the polycurve into equal curved segments because once you turn the curve into a line, the length is different. Basically you need to repeatedly split the curve, turn into polylines, and check if the line length is the same. If it isn’t, redo the process until it is.
This can be solved using the DynaShape’s ShapeMatching constraint or the Length constraints in, which helps to keep the triangles dimensions stay the same.
That looks really good. So the only way for it to be uniform is if their vertices are not really connected.
Btw, I tried to follow how to build the package from your github site at: https://github.com/LongNguyenP/DynaShape and also watched John Pierson’s guide, however, I encounter problems with the Helix toolkit. I guess I will open another topic for this.
I am trying to make them all have the same size. Basically, client wants everything to be one module to save cost but they also want it to look organic.
“So the only way for it to be uniform is if their vertices are not really connected”.
Not necessarily, you can set it up so that they are the vertices are joint.
Generate a flat dia-grid mesh first (you will need MeshToolkit package for this)
For each face of the mesh, obtain the three vertices, and make a ShapeMatching goal based on those three vertices (use the ShapeMatchingGoal_Create node from DynaShape). So basically, if you have n faces, you will get n ShapeMatchingGoals
You do not need to build from the GitHub source, you can use the installer posted here DynaShape
Hi again, I guess it’s looking for the 1.3 folder which I don’t have even after running Dynamo Sandbox. Maybe I’ll just copy from 2.0 to 1.3? Or just install the 1.3 version…
Update:
I just installed it on my laptop running both versions and it got installed successfully!!
Do you have an installer for 2.0 (just in case) so I could also install it in my pc? Thaaanks.
You can also do “manual” installation by copy the “_DynaShape” package folder from one computer to another. Note that this trick only works for Dynamo 2.0, which is what you are using.