Skip to content

Commit 24a875c

Browse files
authored
Update README.md
1 parent 03068cc commit 24a875c

File tree

1 file changed

+22
-28
lines changed

1 file changed

+22
-28
lines changed

README.md

Lines changed: 22 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -4,161 +4,155 @@
44

55
A utility that can use 18 kinds of curve algorithm.
66

7-
# Version
7+
## Version
88

9-
- Unity 2017.3.0f3
9+
- Unity 2018.3.0f2
1010

11-
# Install
12-
13-
1. Go to the following page and download "UnityCurveUtils.unitypackage".
14-
https://github.com/baba-s/unity-curve-utils/blob/master/UnityCurveUtils.unitypackage?raw=true
15-
2. Import the downloaded "UnityCurveUtils.unitypackage" into the Unity project.
16-
17-
# Example
11+
## Example
1812

1913
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/00_Example.png)
2014

2115
An example of use of each curve algorithm is stored in "Example" folder.
2216

23-
# Algorithm list
17+
## Algorithm list
2418

25-
## B-Spline curve
19+
### B-Spline curve
2620

2721
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/01_B_SplineCurve.png)
2822

2923
```cs
3024
var point = UnityCurveUtils.B_SplineCurve( x1, y1, x2, y2, x3, y3, t );
3125
```
3226

33-
## Bezier curve
27+
### Bezier curve
3428

3529
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/02_BezierCurve.png)
3630

3731
```cs
3832
var point = UnityCurveUtils.BezierCurve( x1, y1, x2, y2, x3, y3, x4, y4, t );
3933
```
4034

41-
## Hyperbolic spiral
35+
### Hyperbolic spiral
4236

4337
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/03_HyperbolicSpiral.png)
4438

4539
```cs
4640
var point = UnityCurveUtils.HyperbolicSpiral( a, c theta );
4741
```
4842

49-
## Witch of agnesi
43+
### Witch of agnesi
5044

5145
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/04_WitchOfAgnesi.png)
5246

5347
```cs
5448
var point = UnityCurveUtils.WitchOfAgnesi( a, theta );
5549
```
5650

57-
## Folium of descartes
51+
### Folium of descartes
5852

5953
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/05_FoliumOfDescartes.png)
6054

6155
```cs
6256
var point = UnityCurveUtils.FoliumOfDescartes( a, theta );
6357
```
6458

65-
## Ellipse
59+
### Ellipse
6660

6761
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/06_Ellipse.png)
6862

6963
```cs
7064
var point = UnityCurveUtils.Ellipse( a, b, theta );
7165
```
7266

73-
## Hyperbola
67+
### Hyperbola
7468

7569
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/07_Hyperbola.png)
7670

7771
```cs
7872
var point = UnityCurveUtils.Hyperbola( a, b, theta );
7973
```
8074

81-
## Involute of circle
75+
### Involute of circle
8276

8377
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/08_InvoluteOfCircle.png)
8478

8579
```cs
8680
var point = UnityCurveUtils.InvoluteOfCircle( a, theta );
8781
```
8882

89-
## Strophoid
83+
### Strophoid
9084

9185
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/09_Strophoid.png)
9286

9387
```cs
9488
var point = UnityCurveUtils.Strophoid( a, theta );
9589
```
9690

97-
## Conchoid
91+
### Conchoid
9892

9993
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/10_Conchoid.png)
10094

10195
```cs
10296
var point = UnityCurveUtils.Conchoid( a, l, theta );
10397
```
10498

105-
## Cissoid
99+
### Cissoid
106100

107101
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/11_Cissoid.png)
108102

109103
```cs
110104
var point = UnityCurveUtils.Cissoid( a, theta );
111105
```
112106

113-
## Lissajous curve
107+
### Lissajous curve
114108

115109
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/12_LissajousCurve.png)
116110

117111
```cs
118112
var point = UnityCurveUtils.LissajousCurve( A, B, a, b, delta, theta );
119113
```
120114

121-
## Trochoid
115+
### Trochoid
122116

123117
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/13_Trochoid.png)
124118

125119
```cs
126120
var point = UnityCurveUtils.Trochoid( rm, theta, rd );
127121
```
128122

129-
## Epitrocoid
123+
### Epitrocoid
130124

131125
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/14_Epitrocoid.png)
132126

133127
```cs
134128
var point = UnityCurveUtils.Epitrocoid( rc, rm, theta, rd );
135129
```
136130

137-
## Hypetrocoid
131+
### Hypetrocoid
138132

139133
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/15_Hypetrocoid.png)
140134

141135
```cs
142136
var point = UnityCurveUtils.Hypetrocoid( rc, rm, theta, rd );
143137
```
144138

145-
## Cycloid
139+
### Cycloid
146140

147141
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/16_Cycloid.png)
148142

149143
```cs
150144
var point = UnityCurveUtils.Cycloid( rm, theta );
151145
```
152146

153-
## Epicycloid
147+
### Epicycloid
154148

155149
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/17_Epicycloid.png)
156150

157151
```cs
158152
var point = UnityCurveUtils.Epicycloid( rm, rd, theta );
159153
```
160154

161-
## Hypocycloid
155+
### Hypocycloid
162156

163157
![](https://raw.githubusercontent.com/baba-s/unity-curve-utils/master/Screenshots/18_Hypocycloid.png)
164158

0 commit comments

Comments
 (0)