HI i need merge Mesh. MergeAllCoplanarFaces API(IN GRASSHOPPER) for Mesh(or SubD)
In Python C # or Rhinoscriptsyntax,…???
Is there a way for MergeCoplanarFaces Work in grasshopper as well as this performance in Rhino for( Mesh Brep and Subd)?
Of course I wrote MergeCoplanarFaces
command according to the relevant API for BREP
Only!!, but does not act for Mesh and SUBD
MergeCoplanarFaces(mesh).gh (13.5 KB)
private void RunScript(Brep Brep, ref object brep, ref object Result)
{
if (null != Brep)
{ brep = Brep.MergeCoplanarFaces(RhinoDocument.ModelAbsoluteTolerance);
Result = brep;
brep = Brep;}
3 posts - 2 participants