wrench: Changed block part names to base
This commit is contained in:
parent
31a10134e1
commit
364db01e75
2 changed files with 17 additions and 17 deletions
|
@ -18,16 +18,16 @@ const Huey = new freesewing.Design(config, plugins);
|
|||
Huey.prototype.draftBase = function(part) {
|
||||
return new Brian(this.settings).draftBase(part);
|
||||
};
|
||||
Huey.prototype.draftFrontBlock = function(part) {
|
||||
Huey.prototype.draftFrontBase = function(part) {
|
||||
return new Brian(this.settings).draftFront(part);
|
||||
};
|
||||
Huey.prototype.draftBackBlock = function(part) {
|
||||
Huey.prototype.draftBackBase = function(part) {
|
||||
return new Brian(this.settings).draftBack(part);
|
||||
};
|
||||
Huey.prototype.draftSleevecap = function(part) {
|
||||
return new Brian(this.settings).draftSleevecap(part);
|
||||
};
|
||||
Huey.prototype.draftSleeveBlock = function(part) {
|
||||
Huey.prototype.draftSleeveBase = function(part) {
|
||||
return new Brian(this.settings).draftSleeve(part);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue