Mesh.Weld Typo

//
  // Summary:
  //     Makes sure that faces sharing an edge and having a difference of normal greater
  //     than or equal to angleToleranceRadians share vertices along that edge, vertex
  //     normals are averaged.
  //
  // Parameters:
  //   angleToleranceRadians:
  //     Angle at which to weld vertices.
  public void Weld(double angleToleranceRadians) {
      UnsafeNativeMethods.RHC_RhinoWeldMesh(NonConstPointer(), angleToleranceRadians);
  }

I think that there is a typo. I think that, in the summary, greater should be replaced with less. Can you confirm?

Best,
Nick

Seems like “less than or equal to” is appropriate. I’ll look into it to verify.

– Dale

1 Like