-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Changed the behavior of the Math.map() method. Now it maps a given …
…value from one range to another. Example: # map the value 300 from range 0-600 to range 0-256 say Math.map(300, 0, 600, 0, 256); # 128 - The old Math.map() method is now available as Math.map_range() Example: # map 10 values inside the range from 0 to 1 say Math.map_range(10, 0, 1).to_a; - Updated .pod files
- Loading branch information
trizen
committed
Sep 5, 2015
1 parent
1f70d8b
commit ecc1e67
Showing
7 changed files
with
48 additions
and
15 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
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
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
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
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 |
---|---|---|
|
@@ -258,6 +258,8 @@ Complex.nok() -> I<Obj> | |
|
||
Return the | ||
|
||
Aliases: I<binomial> | ||
|
||
=cut | ||
|
||
=head2 not | ||
|
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 |
---|---|---|
|
@@ -636,6 +636,8 @@ Number.nok() -> I<Obj> | |
|
||
Return the | ||
|
||
Aliases: I<binomial> | ||
|
||
=cut | ||
|
||
=head2 npow | ||
|
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