chanley
(Chris Hanley)
April 14, 2018, 3:34pm
2
There are a few discussions on various methods for doing slope analysis. Here is one that has a few different flavors, (C#, Python, Native components).
I know this answer is a little off topic, but I thought I would share. We spent some time looking at a few approaches for this and the examples below seemed to be a good fit for us. Maybe it helps?
Another approach is to explode the mesh faces into individual meshes. This allows you to assign the same color to all the vertices of each resulting “face”, (resulting in “coloring by face”). Here is an example in python.
[SlopeAnalysis_py_GH]
[SlopeAnalysis_py_GH2]
You can also do it with m…