mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 12:53:52 +01:00
Hole command tweaks
This commit is contained in:
parent
bf8f9652ec
commit
8fc592f3e2
1 changed files with 2 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ export const HoleOperation: OperationDescriptor<HoleParams> = {
|
|||
console.log(holePoint);
|
||||
|
||||
if (holePoint instanceof Circle){
|
||||
const NewHoleName = "hole" + i;
|
||||
const NewHoleName = "holeC" + holePoint.id;
|
||||
oci.copy("result", NewHoleName);
|
||||
|
||||
const flipped = new Matrix3x4();
|
||||
|
|
@ -103,7 +103,7 @@ export const HoleOperation: OperationDescriptor<HoleParams> = {
|
|||
console.log(holePoint);
|
||||
|
||||
|
||||
const NewHoleName = "hole" + i;
|
||||
const NewHoleName = "holeP" + holePoint.id;
|
||||
oci.copy("result", NewHoleName);
|
||||
|
||||
const flipped = new Matrix3x4();
|
||||
|
|
|
|||
Loading…
Reference in a new issue