We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b52ccec commit cf8feb2Copy full SHA for cf8feb2
1 file changed
README.md
@@ -16,16 +16,21 @@ Package name : `com.ltmx.unitymathematicsextensions`
16
17
## Exension Method Syntax
18
*Old Code :*
19
-> ```C#
20
-> var v1 = math.cos(math.clamp(f.magnitude, 0, 10));
21
-> return v1 * v1;
22
-> ```
+```C#
+var v1 = math.cos(math.clamp(f.magnitude, 0, 10));
+return v1 * v1;
+```
23
*New Code :*
24
25
-> return f.length().clamp(0, 10).cos().sqr();
26
+return f.length().clamp(0, 10).cos().sqr();
27
28
29
+## Using Declaration
30
31
+using static Unity.Mathematics.Math;
32
33
+
34
## Install
35
#### Method 1 : <br>
36
1. Copy Git Package URL : `https://github.com/LTMX/Unity.Mathematics-Extensions.git`
0 commit comments