Skip to content

Commit 3b184b3

Browse files
authored
Merge pull request #669 from redcamel/dev
릴리즈준비
2 parents 5d614e0 + 703e3f0 commit 3b184b3

File tree

137 files changed

+1395
-1916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+1395
-1916
lines changed

example/baseTestUI.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* RedGL - MIT License
33
* Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
* https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
* Last modification time of this file - 2019.6.5 11:37
5+
* Last modification time of this file - 2019.7.5 11:56
66
*/
77

88
var baseTestUI = function (redGL, width) {
@@ -248,6 +248,10 @@ baseTestUI.exampleList = [
248248
{
249249
key: 'object3D lookAt',
250250
href: 'object3D/object3D_lookAt.html'
251+
},
252+
{
253+
key: 'object3D pivotTest',
254+
href: 'object3D/pivotTest.html'
251255
}
252256
]
253257
},

example/camera/RedBasicController.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.5.15 16:50
5+
~ Last modification time of this file - 2019.7.8 15:5
66
-->
77

88
<!DOCTYPE html>
@@ -46,7 +46,7 @@
4646
// 렌더러 생성
4747
tRenderer = RedRenderer();
4848
// 뷰생성 및 적용
49-
tWorld.addView(RedView('test', this, tScene, tController));
49+
tWorld.addView(RedView(this, tScene, tController));
5050
// 그리드 설정
5151
tScene['grid'] = RedGrid(this)
5252
// axis 설정

example/camera/RedBasicController_targetView.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.5.15 16:50
5+
~ Last modification time of this file - 2019.7.8 15:16
66
-->
77

88
<!DOCTYPE html>
@@ -50,13 +50,13 @@
5050
// 렌더러 생성
5151
tRenderer = RedRenderer();
5252
// 뷰생성 및 적용
53-
tWorld.addView(RedView('test', this, tScene, tController));
54-
tWorld.addView(RedView('test2', this, tScene, tController2));
55-
RedView('test').setSize('50%', '100%')
56-
RedView('test2').setSize('50%', '100%')
57-
RedView('test2').setLocation('50%', 0)
58-
tController['targetView'] = RedView('test');
59-
tController2['targetView'] = RedView('test2');
53+
tWorld.addView(RedView(this, tScene, tController),'test');
54+
tWorld.addView(RedView(this, tScene, tController2),'test2');
55+
tWorld.getView('test').setSize('50%', '100%')
56+
tWorld.getView('test2').setSize('50%', '100%')
57+
tWorld.getView('test2').setLocation('50%', 0)
58+
tController['targetView'] = tWorld.getView('test');
59+
tController2['targetView'] = tWorld.getView('test2');
6060
// 그리드 설정
6161
tScene['grid'] = RedGrid(this)
6262
// axis 설정

example/camera/RedCamera.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.5.15 16:50
5+
~ Last modification time of this file - 2019.7.8 15:8
66
-->
77

88
<!DOCTYPE html>
@@ -47,7 +47,7 @@
4747
// 렌더러 생성
4848
tRenderer = RedRenderer();
4949
// 뷰생성 및 적용
50-
tView = RedView('HelloRedGL', redGL, tScene, tCamera);
50+
tView = RedView(redGL, tScene, tCamera);
5151
tWorld.addView(tView);
5252
// 그리드 설정
5353
tScene['grid'] = RedGrid(redGL);

example/camera/RedCamera_mode2D.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.5.20 20:27
5+
~ Last modification time of this file - 2019.7.8 15:8
66
-->
77

88
<!DOCTYPE html>
@@ -66,7 +66,7 @@
6666
// 렌더러 생성
6767
tRenderer = RedRenderer();
6868
// 뷰생성 및 적용
69-
tView = RedView('HelloRedGL', redGL, tScene, tCamera);
69+
tView = RedView(redGL, tScene, tCamera);
7070
tWorld.addView(tView);
7171
// 그리드 설정
7272
tScene['grid'] = RedGrid(redGL);

example/camera/RedObitController.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.5.15 16:50
5+
~ Last modification time of this file - 2019.7.8 15:8
66
-->
77

88
<!DOCTYPE html>
@@ -46,7 +46,7 @@
4646
// 렌더러 생성
4747
tRenderer = RedRenderer();
4848
// 뷰생성 및 적용
49-
tWorld.addView(RedView('test', this, tScene, tController));
49+
tWorld.addView(RedView(this, tScene, tController));
5050
// 그리드 설정
5151
tScene['grid'] = RedGrid(this)
5252
// axis 설정

example/camera/RedObitController_targetView.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.5.15 16:50
5+
~ Last modification time of this file - 2019.7.8 15:17
66
-->
77

88
<!DOCTYPE html>
@@ -49,13 +49,13 @@
4949
// 렌더러 생성
5050
tRenderer = RedRenderer();
5151
// 뷰생성 및 적용
52-
tWorld.addView(RedView('test', this, tScene, tController));
53-
tWorld.addView(RedView('test2', this, tScene, tController2));
54-
RedView('test').setSize('50%', '100%')
55-
RedView('test2').setSize('50%', '100%')
56-
RedView('test2').setLocation('50%', 0)
57-
tController['targetView'] = RedView('test');
58-
tController2['targetView'] = RedView('test2');
52+
tWorld.addView(RedView(this, tScene, tController), 'test');
53+
tWorld.addView(RedView(this, tScene, tController2), 'test2');
54+
tWorld.getView('test').setSize('50%', '100%')
55+
tWorld.getView('test2').setSize('50%', '100%')
56+
tWorld.getView('test2').setLocation('50%', 0)
57+
tController['targetView'] = tWorld.getView('test');
58+
tController2['targetView'] = tWorld.getView('test2');
5959
// 그리드 설정
6060
tScene['grid'] = RedGrid(this)
6161
// axis 설정

example/etc/Fog_example.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.5.15 16:50
5+
~ Last modification time of this file - 2019.7.8 15:8
66
-->
77

88
<!DOCTYPE html>
@@ -47,7 +47,7 @@
4747
// 렌더러 생성
4848
tRenderer = RedRenderer();
4949
// 뷰생성 및 적용
50-
tView = RedView('HelloRedGL', redGL, tScene, tController);
50+
tView = RedView(redGL, tScene, tController);
5151
tWorld.addView(tView);
5252
// 그리드 설정
5353
tScene['grid'] = RedGrid(redGL);

example/etc/LOD_example.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.5.21 16:9
5+
~ Last modification time of this file - 2019.7.8 15:8
66
-->
77

88
<!DOCTYPE html>
@@ -47,7 +47,7 @@
4747
// 렌더러 생성
4848
tRenderer = RedRenderer();
4949
// 뷰생성 및 적용
50-
tView = RedView('HelloRedGL', redGL, tScene, tController);
50+
tView = RedView(redGL, tScene, tController);
5151
tWorld.addView(tView);
5252
// 그리드 설정
5353
tScene['grid'] = RedGrid(redGL);

example/etc/RedBoxSelection.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
~ RedGL - MIT License
33
~ Copyright (c) 2018 - 2019 By RedCamel([email protected])
44
~ https://github.com/redcamel/RedGL2/blob/dev/LICENSE
5-
~ Last modification time of this file - 2019.6.4 17:20
5+
~ Last modification time of this file - 2019.7.8 15:8
66
-->
77

88
<!DOCTYPE html>
@@ -57,7 +57,7 @@
5757
// 렌더러 생성
5858
tRenderer = RedRenderer();
5959
// 뷰생성 및 적용
60-
tView = RedView('HelloRedGL', redGL, tScene, tController);
60+
tView = RedView(redGL, tScene, tController);
6161
tWorld.addView(tView);
6262
// 그리드 설정
6363
tScene['grid'] = RedGrid(redGL);

0 commit comments

Comments
 (0)