|
@@ -0,0 +1,83 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="ko">
|
|
|
+ <head>
|
|
|
+ <meta charset="utf-8" />
|
|
|
+ <base href="../../../" />
|
|
|
+ <script src="page.js"></script>
|
|
|
+ <link type="text/css" rel="stylesheet" href="page.css" />
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ [page:BufferGeometry] →
|
|
|
+
|
|
|
+ <h1>[name]</h1>
|
|
|
+
|
|
|
+ <p class="desc">하나 이상의 경로 모양에서 한면 다각형 형상을 만듭니다.</p>
|
|
|
+
|
|
|
+ <iframe id="scene" src="scenes/geometry-browser.html#ShapeGeometry"></iframe>
|
|
|
+
|
|
|
+ <script>
|
|
|
+
|
|
|
+ // iOS iframe auto-resize workaround
|
|
|
+
|
|
|
+ if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {
|
|
|
+
|
|
|
+ const scene = document.getElementById( 'scene' );
|
|
|
+
|
|
|
+ scene.style.width = getComputedStyle( scene ).width;
|
|
|
+ scene.style.height = getComputedStyle( scene ).height;
|
|
|
+ scene.setAttribute( 'scrolling', 'no' );
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ </script>
|
|
|
+
|
|
|
+
|
|
|
+ <h2>코드 예제</h2>
|
|
|
+
|
|
|
+
|
|
|
+ <code>
|
|
|
+ const x = 0, y = 0;
|
|
|
+
|
|
|
+ const heartShape = new THREE.Shape();
|
|
|
+
|
|
|
+ heartShape.moveTo( x + 5, y + 5 );
|
|
|
+ heartShape.bezierCurveTo( x + 5, y + 5, x + 4, y, x, y );
|
|
|
+ heartShape.bezierCurveTo( x - 6, y, x - 6, y + 7,x - 6, y + 7 );
|
|
|
+ heartShape.bezierCurveTo( x - 6, y + 11, x - 3, y + 15.4, x + 5, y + 19 );
|
|
|
+ heartShape.bezierCurveTo( x + 12, y + 15.4, x + 16, y + 11, x + 16, y + 7 );
|
|
|
+ heartShape.bezierCurveTo( x + 16, y + 7, x + 16, y, x + 10, y );
|
|
|
+ heartShape.bezierCurveTo( x + 7, y, x + 5, y + 5, x + 5, y + 5 );
|
|
|
+
|
|
|
+ const geometry = new THREE.ShapeGeometry( heartShape );
|
|
|
+ const material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
|
|
|
+ const mesh = new THREE.Mesh( geometry, material ) ;
|
|
|
+ scene.add( mesh );
|
|
|
+ </code>
|
|
|
+
|
|
|
+ <h2>생성자</h2>
|
|
|
+
|
|
|
+
|
|
|
+ <h3>[name]([param:Array shapes], [param:Integer curveSegments])</h3>
|
|
|
+ <p>
|
|
|
+ shapes — 모양의 [page:Array] 또는 단일 [page:Shape shape]. 기본값은 단일 삼각형 모양입니다.<br />
|
|
|
+ curveSegments - [page:Integer] - 모양당 세그먼트 수입니다. 기본값은 12 입니다.
|
|
|
+ </p>
|
|
|
+
|
|
|
+ <h2>프로퍼티</h2>
|
|
|
+ <p>일반 프로퍼티는 기본 [page:BufferGeometry] 클래스를 참조하십시오.</p>
|
|
|
+
|
|
|
+ <h3>[property:Object parameters]</h3>
|
|
|
+ <p>
|
|
|
+ 각 생성자 매개 변수에 대한 속성이 있는 개체입니다. 인스턴스화 후 수정해도 형상은 변경되지 않습니다.
|
|
|
+ </p>
|
|
|
+
|
|
|
+ <h2>메서드</h2>
|
|
|
+ <p>일반 메서드는 기본 [page:BufferGeometry] 클래스를 참조하십시오.</p>
|
|
|
+
|
|
|
+ <h2>소스 코드</h2>
|
|
|
+
|
|
|
+ <p>
|
|
|
+ [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
|
|
|
+ </p>
|
|
|
+ </body>
|
|
|
+</html>
|