Vector3 : three.js

Vector3

Class representing a 3D vector. A 3D vector is an ordered triplet of numbers (labeled x, y, and z), which can be used to represent a number of things, such as:

  • A point in 3D space.
  • A direction and length in 3D space. In three.js the length will always be the Euclidean distance (straight-line distance) from (0, 0, 0) to (x, y, z) and the direction is also measured from (0, 0, 0) towards (x, y, z).
  • Any arbitrary ordered triplet of numbers.

There are other things a 3D vector can be used to represent, such as momentum vectors and so on, however these are the most common uses in three.js.

Example

var a = new THREE.Vector3( 0, 1, 0 ); //no arguments; will be initialised to (0, 0, 0) var b = new THREE.Vector3( ); var d = a.distanceTo( b );

Constructor

Vector3( xyz )

x - the x value of the vector. Default is 0.
y - the y value of the vector. Default is 0.
z - the z value of the vector. Default is 0.

Creates a new Vector3.

Properties

#.isVector3

Used to check whether this or derived classes are Vector3s. Default is true.

You should not change this, as it is used internally for optimisation.

#.x

#.y

#.z

Methods

#.add ( v )

Adds v to this vector.

#.addScalar ( s )

Adds the scalar value s to this vector's xy and z values.

#.addScaledVector ( vs )

Adds the multiple of v and s to this vector.

#.addVectors ( ab )

Sets this vector to a + b.

#.applyAxisAngle ( axisangle )

axis - A normalized Vector3.
angle - An angle in radians.

Applies a rotation specified by an axis and an angle to this vector.

#.applyEuler ( euler )

Applies euler transform to this vector by converting the Euler object to a Quaternion and applying.

#.applyMatrix3 ( m )

Multiplies this vector by m

#.applyMatrix4 ( m )

Multiplies this vector (with an implicit 1 in the 4th dimension) and m, and divides by perspective.

#.applyQuaternion ( quaternion )

Applies a Quaternion transform to this vector.

#.angleTo ( v )

Returns the angle between this vector and vector v in radians.

#.ceil ()

The xy and z components of the vector are rounded up to the nearest integer value.

#.clamp ( minmax )

min - the minimum xy and z values.
max - the maximum xy and z values in the desired range

If this vector's x, y or z value is greater than the max vector's x, y or z value, it is replaced by the corresponding value. 

If this vector's x, y or z value is less than the min vector's x, y or z value, it is replaced by the corresponding value.

#.clampLength ( minmax )

min - the minimum value the length will be clamped to 
max - the maximum value the length will be clamped to

If this vector's length is greater than the max value, it is replaced by the max value. 

If this vector's length is less than the min value, it is replaced by the min value.

#.clampScalar ( minmax )

min - the minimum value the components will be clamped to 
max - the maximum value the components will be clamped to

If this vector's x, y or z values are greater than the max value, they are replaced by the max value. 

If this vector's x, y or z values are less than the min value, they are replaced by the min value.

#.clone ()

Returns a new vector3 with the same xy and z values as this one.

#.copy ( v )

Copies the values of the passed vector3's xy and z properties to this vector3.

#.cross ( v )

Sets this vector to cross product of itself and v.

#.crossVectors ( ab )

Sets this vector to cross product of a and b.

#.distanceTo ( v )

Computes the distance from this vector to v.

#.distanceToManhattan ( v )

Computes the Manhattan distance from this vector to v.

#.distanceToSquared ( v )

Computes the squared distance from this vector to v. If you are just comparing the distance with another distance, you should compare the distance squared instead as it is slightly more efficient to calculate.

#.divide ( v )

Divides this vector by v.

#.divideScalar ( s )

Divides this vector by scalar s.
Sets vector to ( 0, 0 ) if *s = 0*.

#.dot ( v )

Calculate the dot product of this vector and v.

#.equals ( v )

Checks for strict equality of this vector and v.

#.floor ()

The components of the vector are rounded down to the nearest integer value.

#.fromArray ( arrayoffset )

array - the source array.
offset - ( optional) offset into the array. Default is 0.

Sets this vector's x value to be array[ offset + 0 ], y value to be array[ offset + 1 ] and z value to be array[ offset + 2 ].

#.fromBufferAttribute ( attributeindex )

attribute - the source attribute.
index - index in the attribute.

Sets this vector's xy and z values from the attribute.

#.getComponent ( index )

index - 0, 1 or 2.

If index equals 0 returns the x value. 
If index equals 1 returns the y value. 
If index equals 2 returns the z value.

#.length ()

Computes the Euclidean length (straight-line length) from (0, 0, 0) to (x, y, z).

#.lengthManhattan ()

Computes the Manhattan length of this vector.

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

#.lengthSq ()

Computes the square of the Euclidean length (straight-line length) from (0, 0, 0) to (x, y, z). If you are comparing the lengths of vectors, you should compare the length squared instead as it is slightly more efficient to calculate.

#.lerp ( valpha )

v - Vector3 to interpolate towards.
alpha - interpolation factor in the closed interval [0, 1].

Linearly interpolate between this vector and v, where alpha is the distance along the line - alpha = 0 will be this vector, and alpha = 1 will be v.

#.lerpVectors ( v1v2alpha )

v1 - the starting Vector3.
v2 - Vector3 to interpolate towards.
alpha - interpolation factor in the closed interval [0, 1].

Sets this vector to be the vector linearly interpolated between v1 and v2 where alpha is the distance along the line connecting the two vectors - alpha = 0 will be v1, and alpha = 1 will be v2.

#.negate ()

Inverts this vector - i.e. sets x = -x, y = -y and z = -z.

#.normalize ()

Convert this vector to a unit vector - that is, sets it equal to the vector with the same direction as this one, but length 1.

#.max ( v )

If this vector's x, y or z value is less than v's x, y or z value, replace that value with the corresponding max value.

#.min ( v )

If this vector's x, y or z value is greater than v's x, y or z value, replace that value with the corresponding min value.

#.multiply ( v )

Multiplies this vector by v.

#.multiplyScalar ( s )

Multiplies this vector by scalar s.

#.multiplyVectors ( ab )

Sets this vector equal to a x b.

#.project ( camera )

camera — camera to use in the projection.

Projects the vector with the camera.

#.projectOnPlane ( planeNormal )

planeNormal - A vector representing a plane normal.

Projects this vector onto a plane by subtracting this vector projected onto the plane's normal from this vector.

#.projectOnVector ( Vector3 )

Projects this vector onto another vector.

#.reflect ( normal )

normal - the normal to the reflecting plane

Reflect the vector off of plane orthogonal to normal. Normal is assumed to have unit length.

#.round ()

The components of the vector are rounded to the nearest integer value.

#.roundToZero ()

The components of the vector are rounded towards zero (up if negative, down if positive) to an integer value.

#.set ( xyz )

Sets the xy and z components of this vector.

#.setComponent ( indexvalue )

index - 0, 1 or 2.
value - Float

If index equals 0 set x to value.
If index equals 1 set y to value.
If index equals 2 set z to value

#.setFromCylindrical ( c )

Sets this vector from the cylindrical coordinates c.

#.setFromMatrixColumn ( matrixindex )

Sets this vector's xy and z equal to the column of the matrix specified by the index.

#.setFromMatrixPosition ( m )

Sets this vector to the position elements of the transformation matrix m.

#.setFromMatrixScale ( m )

Sets this vector to the scale elements of the transformation matrix m.

#.setFromSpherical ( s )

Sets this vector from the spherical coordinates s.

#.setLength ( l )

Set this vector to the vector with the same direction as this one, but length l.

#.setScalar ( scalar )

Set the xy and z values of this vector both equal to scalar.

#.setX ( x )

Replace this vector's x value with x.

#.setY ( y )

Replace this vector's y value with y.

#.setZ ( z )

Replace this vector's z value with z.

#.sub ( v )

Subtracts v from this vector.

#.subScalar ( s )

Subtracts s from this vector's xy and z compnents.

#.subVectors ( ab )

Sets this vector to a - b.

#.toArray ( arrayoffset )

array - (optional) array to store the vector to. If this is not provided a new array will be created.
offset - (optional) optional offset into the array.

Returns an array [x, y, z], or copies x, y and z into the provided array.

#.transformDirection ( m )

Transforms the direction of this vector by a matrix (the upper left 3 x 3 subset of a m) and then normalizes the result.

#.unproject ( camera )

camera — camera to use in the projection.

Unprojects the vector with the camera's projection matrix.

 

[출처] https://threejs.org/docs/#api/math/Vector3

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
20 [nest.js] [NestJS] NestJS 구조 이해를 위한 필수 개념 정리 - Node.js/TypeScript/Express 비교 포함 file 졸리운_곰 2025.12.12 501
19 [node.js 개발] Apache Reverse Proxy 설정(아파치와 노드 연동) file 졸리운_곰 2024.03.17 300
18 [node.js 개발] PM2로 Node.js 앱 프로세스 배포하기 file 졸리운_곰 2024.03.16 405
17 [node.js 개발] PM2를 활용한 Node.js 무중단 서비스하기 file 졸리운_곰 2024.03.16 517
16 [node.js 응용] Next.js : Next.js14에 Mysql연결하기 졸리운_곰 2024.03.03 379
15 [node.js 응용] Node.js에서 다른 파일의 함수를 "include" 하는 방법 졸리운_곰 2024.02.28 428
14 [node.js 응용] NodeJS 에서 mqtt 사용하기 file 졸리운_곰 2024.02.23 399
13 [node.js 응용] Next.js 기본 개념정리 file 졸리운_곰 2024.02.23 432
12 [node.js 응용] ejs 사용설명서 file 졸리운_곰 2023.11.25 371
11 [node.js 응용] Build a Node.js Proxy Server in Under 10 minutes! file 졸리운_곰 2023.05.07 468
10 [node.js 응용] node - pm2로 node.js 프로세스 관리하기 - 기본 명령어, 실행하기 file 졸리운_곰 2023.04.25 408
9 [node.js 응용] Node.js | MySQL과 연동(mysql모듈) - CRUD 2/2 졸리운_곰 2023.03.31 231
8 [node.js 응용] Node.js | MySQL과 연동(mysql모듈) - CRUD 1/2 file 졸리운_곰 2023.03.31 484
7 [node.js 응용] PM2 - Node.js 프로세스 관리 도구 file 졸리운_곰 2021.12.10 410
6 [node.js][nodejs] [Linux] 리눅스 내 Node.js 및 NPM 최신 버전으로 유지하기 file 졸리운_곰 2021.10.11 484
5 [node.js][typescript] 5분 안에 보는 TypeScript file 졸리운_곰 2021.07.03 428
4 Getting started with RabbitMQ and Node.js file 졸리운_곰 2019.05.09 466
3 [Node.js + RabbitMQ] Node.js + socket.io + RabbitMQ 이용한 실시간 메시지 처리 file 졸리운_곰 2019.05.09 352
2 node.js 서버 장애시 자동 재시작 설정 [forever 사용] 졸리운_곰 2019.01.24 884
1 Express 앱용 프로세스 관리자 졸리운_곰 2018.10.16 604
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED