diff --git a/SketchUp/Sketchup/ComponentInstance.rb b/SketchUp/Sketchup/ComponentInstance.rb index 664edc1..60e86ae 100644 --- a/SketchUp/Sketchup/ComponentInstance.rb +++ b/SketchUp/Sketchup/ComponentInstance.rb @@ -460,8 +460,10 @@ def split(instance) end # The subtract method is used to compute the boolean difference of the two - # instances representing manifold solid volumes (this - arg). If the specified - # objects (this and arg) do not represent manifold volumes, this method fails. + # instances representing manifold solid volumes (arg - this). Both instances + # are deleted and replaced by the result of subtracting the first from the + # second instance. If the specified objects (this and arg) do not represent + # manifold volumes, this method fails. # # @example # entities = Sketchup.active_model.entities @@ -536,9 +538,10 @@ def transformation=(transformation) end # The trim method is used to compute the (non-destructive) boolean difference - # of the two instances representing manifold solid volumes (this - arg). If - # the specified objects (this and arg) do not represent manifold volumes, this - # method fails. + # of the two instances representing manifold solid volumes (arg - this). The + # argument is deleted and replaced by the result of subtracting the first from + # the second instance. If the specified objects (this and arg) do not represent + # manifold volumes, this method fails. # # @example # entities = Sketchup.active_model.entities diff --git a/SketchUp/Sketchup/Group.rb b/SketchUp/Sketchup/Group.rb index 76049fa..faf4177 100644 --- a/SketchUp/Sketchup/Group.rb +++ b/SketchUp/Sketchup/Group.rb @@ -525,8 +525,10 @@ def split(group) end # The subtract method is used to compute the boolean difference of the two - # groups representing manifold solid volumes (this - arg). If the specified - # objects (this and arg) do not represent manifold volumes, this method fails. + # groups representing manifold solid volumes (arg - this). Both groups are + # deleted and replaced by the result of subtracting the first from the second + # group. If the specified objects (this and arg) do not represent manifold + # volumes, this method fails. # # @example # entities = Sketchup.active_model.entities @@ -640,9 +642,10 @@ def transformation=(transform) end # The trim method is used to compute the (non-destructive) boolean difference - # of the two groups representing manifold solid volumes (this - arg). If - # the specified objects (this and arg) do not represent manifold volumes, this - # method fails. + # of the two groups representing manifold solid volumes (arg - this). The + # argument is deleted and replaced by the result of subtracting the first from + # the second group. If the specified objects (this and arg) do not represent + # manifold volumes, this method fails. # # @example # entities = Sketchup.active_model.entities