Go to: Synopsis. Flags. Return value. MEL examples.
offsetSurface [-constructionHistory boolean] [-curveOnSurface boolean] [-distance linear] [-method int] [-name string] [-object boolean] [-polygon int] [-range boolean] [-rebuild boolean] [-replaceOriginal boolean]
[surface]
offsetSurface is undoable, queryable, and editable.
The offset command creates new offset surfaces from the selected surfaces. The default method is a surface offset, which offsets relative to the surface itself. The CV offset method offsets the CVs directly rather than the surface, so is usually slightly less accurate but is faster. The offset surface will always have the same degree, number of CVs and knot spacing as the original surface.| Long name (short name) | [argument types] | Properties | ||
|---|---|---|---|---|
-distance(-d)
|
linear
|
|
||
|
||||
-method(-m)
|
int
|
|
||
|
||||
-name(-n)
|
string
|
|
||
|
||||
-constructionHistory(-ch)
|
boolean
|
|
||
|
||||
-object(-o)
|
boolean
|
|
||
|
||||
-replaceOriginal(-rpo)
|
boolean
|
|
||
|
||||
-curveOnSurface(-cos)
|
boolean
|
|
||
|
||||
-polygon(-po)
|
int
|
|
||
|
||||
-range(-rn)
|
boolean
|
|
||
|
||||
-rebuild(-rb)
|
boolean
|
|
||
|
||||
// To offset the active surface to the specified distance: offsetSurface -d 4.0; // To create an offset using the surface fit offset method: offsetSurface -m 0 -d 2.0 surface1;