-
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1284f37
commit 81ac728
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export interface CubicOpts { | ||
/** | ||
* Set to true (default false) to interpret original vertices as | ||
* breakpoints | ||
*/ | ||
breakPoints: boolean; | ||
/** | ||
* True, to enable uniform tangent scaling. If false (default), each | ||
* tangent will be also scaled by the length of its related parent | ||
* edge in the source shape. | ||
*/ | ||
uniform: boolean; | ||
/** | ||
* Tangent scale factor. Actual length in uniform scaling mode, else | ||
* should be a value between [0..1.33333] | ||
*/ | ||
scale: number; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters