Skip to content

Commit 4d94aab

Browse files
committed
http to https links
1 parent 1ae9d0e commit 4d94aab

2 files changed

Lines changed: 25 additions & 24 deletions

File tree

api-reference.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
###Pivot modifier
2+
### Pivot modifier
33

44
Allows to move the pivot point of a 3D mesh.
55

@@ -8,7 +8,7 @@ Allows to move the pivot point of a 3D mesh.
88

99

1010

11-
###Bend modifier
11+
### Bend modifier
1212

1313
Bends an object along an axis.
1414

@@ -17,7 +17,7 @@ Bends an object along an axis.
1717

1818

1919

20-
###Bloat modifier
20+
### Bloat modifier
2121

2222
Bloats a mesh by forcing vertices out of specified sphere
2323

@@ -26,15 +26,15 @@ Bloats a mesh by forcing vertices out of specified sphere
2626

2727

2828

29-
###Twist modifier
29+
### Twist modifier
3030

3131
Twist mesh along an axis
3232
Adapted from the Twist modifier for PV3D
3333

3434

3535

3636

37-
###Skew modifier
37+
### Skew modifier
3838

3939
Skew mesh along an axis
4040

@@ -43,7 +43,7 @@ Skew mesh along an axis
4343

4444

4545

46-
###Taper modifier
46+
### Taper modifier
4747

4848
The taper modifier displaces the vertices on two axes proportionally to their position on the third axis.
4949

@@ -52,7 +52,7 @@ The taper modifier displaces the vertices on two axes proportionally to their po
5252

5353

5454

55-
###Wheel modifier
55+
### Wheel modifier
5656

5757
Use it with vehicle models for wheels.
5858

@@ -93,7 +93,7 @@ It should work with most car models imported from 3D editors as this is the natu
9393

9494

9595

96-
###Break modifier
96+
### Break modifier
9797

9898
Allow to break a mesh
9999

@@ -102,15 +102,15 @@ Allow to break a mesh
102102

103103

104104

105-
###Noise modifier
105+
### Noise modifier
106106

107107
Randomly displaces each vertex in all 3 axes
108108

109109

110110

111111

112112

113-
###DisplaceMap (BitmapDisplacement) Modifier
113+
### DisplaceMap (BitmapDisplacement) Modifier
114114

115115
Displaces vertices based on RGB values of bitmapData pixels.
116116

@@ -125,7 +125,7 @@ channel in the bitmap: X for Red, Y for Green and Z for Blue.
125125

126126

127127

128-
###Perlin modifier
128+
### Perlin modifier
129129

130130
Displaces vertices based on a perlin/simplex noise source.
131131

readme.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#MOD3
1+
# MOD3
22

33

44
__3D Modifier Library for JavaScript__
@@ -13,7 +13,7 @@ __supports:__ *Three.js* , *Pre3d* , *J3D* , *Copperlicht* , *CubicVR.js*, *OSG
1313

1414

1515

16-
[![MOD3.js](/flipbook2.png)](http://foo123.github.com/examples/flipbook3/)
16+
[![MOD3.js](/flipbook2.png)](https://foo123.github.com/examples/flipbook3/)
1717

1818

1919
It is named *MOD3* to signify that it has support for [Three.js](https://github.com/mrdoob/three.js/)
@@ -26,7 +26,7 @@ The library has a dependency on [Classy.js](https://github.com/foo123/classy.js)
2626

2727

2828

29-
###Contents
29+
### Contents
3030

3131
* [Live Examples](#live-examples)
3232
* [3D Engines Support](#support-for-3d-javascript-engines)
@@ -38,20 +38,20 @@ The library has a dependency on [Classy.js](https://github.com/foo123/classy.js)
3838
* [ChangeLog](#changelog)
3939

4040

41-
###Source Code License
41+
### Source Code License
4242

4343
This code uses the [MIT Open Source License](http://opensource.org/licenses/mit-license.php), per requests to use the license of the original [AS3dMod Modifier Library for ActionScript 3](http://code.google.com/p/as3dmod/) code.
4444

4545
Feel free to share, modify, contribute etc..
4646

4747

48-
###Live Examples
48+
### Live Examples
4949

50-
* [3D flipbook](http://foo123.github.com/examples/flipbook3/) (Three.js, MOD3.js and Tween.js)
51-
* [Dancing Box](http://foo123.github.com/examples/dancing-box/) (a simple blend of 3D manipulation and sound visualization)
50+
* [3D flipbook](https://foo123.github.com/examples/flipbook3/) (Three.js, MOD3.js and Tween.js)
51+
* [Dancing Box](https://foo123.github.com/examples/dancing-box/) (a simple blend of 3D manipulation and sound visualization)
5252

5353

54-
###Support for 3D JavaScript engines
54+
### Support for 3D JavaScript engines
5555

5656
* [Three.js](https://github.com/mrdoob/three.js/) with examples (r78)
5757
* [OSG.js](https://github.com/cedricpinson/osgjs) with examples (0.2.5)
@@ -62,7 +62,7 @@ Feel free to share, modify, contribute etc..
6262

6363

6464

65-
###Modifiers supported (up to present)
65+
### Modifiers supported (up to present)
6666
* Pivot (note: Pivot does not work with Pre3d)
6767
* Bend
6868
* Twist
@@ -76,21 +76,21 @@ Feel free to share, modify, contribute etc..
7676
* DisplaceMap ( MOD3 v.0.3.5 )
7777

7878

79-
###TODO
79+
### TODO
8080
* possible generic way to use (at least some) 3D modifiers directly in GLSL for all supported engines (??)
8181
* add custom modifiers except the defaults found in AS3dMod library
8282
* optimize (math ops, caching, modifier chain calls etc..) [DONE partially]
8383
* port the modifiers that use Perlin Noise (using instead the simpler and faster Simplex Noise routine for JavaScript, [noisejs](https://github.com/josephg/noisejs) , or [simplex-noise.js](https://github.com/jwagner/simplex-noise.js)) [DONE partially]
8484
* keep up with JavaScript 3D Engines updates (will try)
8585

8686

87-
###How to debug
87+
### How to debug
8888
1. If the problem is in one 3D engine, while the other engines work correctly for this example/modifier, then the problem is probably with that engine's proxy classes (plugins/3DENGINENAME/3DENGINENAME.js)
8989
2. If the specific example/modifier does not work in any 3D engine, but other modifiers/examples do work, then the problem is probably with that modifier's code (modifiers/MODIFIERNAME.js)
9090
3. If no example works for any engine, then the problem is probably in the core classes, or some class throws a js error which stops the whole execution
9191

9292

93-
###Changelog
93+
### Changelog
9494
* 0.6.0 3d engine plugins have been removed from the final build to make packaged code lighter, include the appropriate 3D plugin **manualy in your application** after the main **mod3** script (see examples), modifiers are independent of the underlying modifiable mesh (it is a parameter), and this enables them to be shared (if the exact same modifier is needed) across multiple different modifierStacks for different underlying meshes, support for OSG.js, further refactoring and optimisations, some method changes
9595
* 0.5.0 parallel processing through workers is dropped, add support for OSG.js (in progress), update support for Three.js r78, some refactoring and optimisations
9696
* 0.4 support parallel modifiers with web workers transparently, code refactor, optimizations, examples updates
@@ -103,7 +103,8 @@ Feel free to share, modify, contribute etc..
103103
* added support for Three.js revision (r58)
104104
* added support for Three.js revision (r53)
105105

106-
106+
<!--
107107
*URL* [Nikos Web Development](http://nikos-web-development.netai.net/ "Nikos Web Development")
108108
*URL* [MOD3 blog post](http://nikos-web-development.netai.net/blog/mod3-a-javascript-port-of-as3mod-for-three-js/ "MOD3 blog post")
109109
*URL* [WorkingClassCode](http://workingclasscode.uphero.com/ "Working Class Code")
110+
-->

0 commit comments

Comments
 (0)