Skip to content

Commit

Permalink
Merge pull request #639 from prideout/patch-1
Browse files Browse the repository at this point in the history
Swap order of "add" arguments.
  • Loading branch information
fraguada authored Oct 2, 2024
2 parents 598f948 + 8e099b3 commit 27cf990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/rhino3dm.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3124,11 +3124,11 @@ declare module 'rhino3dm' {
addBrep(brep:Brep): string;
/**
* @description Duplicates the object, then adds a copy of the object to the document.
* @param {ObjectAttributes} attributes
* @param {GeometryBase} geometry
* @param {ObjectAttributes} attributes
* @returns {string} A unique identifier for the object.
*/
add(attributes: ObjectAttributes, geometry: GeometryBase): string;
add(geometry: GeometryBase, attributes: ObjectAttributes): string;
/** ... */
addObject(): void;
/**
Expand Down

0 comments on commit 27cf990

Please sign in to comment.