Feature request: crease analysis view mode

Maybe I’ve missed this and it already exists, and if so, apologies for the repeat post.

When working on optimizing SubD models, getting crease weight right across lots of different edges can be a challenge, given the current methods of viewing and editing weights and how piecemeal it is.

Don’t get me wrong, I’m very grateful to use creases to optimize curvature already, but I would love to be able to view creases across all edges on a SubD body at-a-glance. Maybe with an analysis view like thickness analysis or curvature analysis, we could have crease analysis color-mapped?

Might this work for you in the Rhino WIP?

@scottd GlobalEdgeContinuity, while you can load SubD surfaces and analyse hard creases, it wil not detect soft creased edges, since they don’t convert to separate surfaces.

To see all the edges in a SubD that have a creases use _SelSubDEdges and use options Weighted / Crease, then run _Sharp to display the edges.

or this macro, provided your model has both soft and hard creases:
_SelSubDEdges pause Weighted=Yes Crease=Yes Enter _Sharp

Apart from that, you can use _CurvatureAnalysis with option MinRadius to get a color mapping on soft creases.
If that doesn’t give the result you are after, could you clarify what is missing or needs improvement?