github_url: | hide |
---|
Vector used for 3D math using floating point coordinates.
3-element structure that can be used to represent positions in 3D space or any other pair of numeric values.
It uses floating point coordinates.
:ref:`float<class_float>` | :ref:`x<class_Vector3_property_x>` | 0.0 |
:ref:`float<class_float>` | :ref:`y<class_Vector3_property_y>` | 0.0 |
:ref:`float<class_float>` | :ref:`z<class_Vector3_property_z>` | 0.0 |
Default | 0.0 |
The vector's X component. Also accessible by using the index position [0]
.
Default | 0.0 |
The vector's Y component. Also accessible by using the index position [1]
.
Default | 0.0 |
The vector's Z component. Also accessible by using the index position [2]
.
Constructs a new Vector3
from :ref:`Vector3i<class_Vector3i>`.
Returns a Vector3
with the given components.
Returns a new vector with all components in absolute values (i.e. positive).
Returns the minimum angle to the given vector.
Returns the vector "bounced off" from a plane defined by the given normal.
Returns a new vector with all components rounded up.
Returns the cross product with b
.
Performs a cubic interpolation between vectors pre_a
, a
, b
, post_b
(a
is current), by the given amount t
. t
is in the range of 0.0 - 1.0
, representing the amount of interpolation.
Returns the normalized vector pointing from this vector to b
.
Returns the squared distance to b
. Prefer this function over :ref:`distance_to<class_Vector3_method_distance_to>` if you need to sort vectors or need the squared distance for some formula.
Returns the distance to b
.
Returns the dot product with b
.
Returns a new vector with all components rounded down.
Returns the inverse of the vector. This is the same as Vector3( 1.0 / v.x, 1.0 / v.y, 1.0 / v.z )
.
Returns true
if this vector and v
are approximately equal, by running :ref:`@GDScript.is_equal_approx<class_@GDScript_method_is_equal_approx>` on each component.
Returns true
if the vector is normalized.
Returns the vector's length.
Returns the vector's length squared. Prefer this function over :ref:`length<class_Vector3_method_length>` if you need to sort vectors or need the squared length for some formula.
Returns the result of the linear interpolation between this vector and b
by amount t
. t
is in the range of 0.0 - 1.0
, representing the amount of interpolation..
Returns the axis of the vector's largest value. See AXIS_*
constants.
Returns the axis of the vector's smallest value. See AXIS_*
constants.
Moves the vector toward to
by the fixed delta
amount.
Returns the vector scaled to unit length. Equivalent to v / v.length()
.
Returns the outer product with b
.
Returns a vector composed of the fposmod
of this vector's components and mod
.
Returns a vector composed of the fposmod
of this vector's components and modv
's components.
Returns the vector projected onto the vector b
.
Returns the vector reflected from a plane defined by the given normal.
Rotates the vector around a given axis by phi
radians. The axis must be a normalized vector.
Returns the vector with all components rounded to the nearest integer, with halfway cases rounded away from zero.
Returns the vector with each component set to one or negative one, depending on the signs of the components.
Returns the result of spherical linear interpolation between this vector and b
, by amount t
. t
is in the range of 0.0 - 1.0
, representing the amount of interpolation.
Note: Both vectors must be normalized.
Returns the component of the vector along a plane defined by the given normal.
Returns a copy of the vector snapped to the lowest neared multiple.
Returns a diagonal matrix with the vector as main diagonal.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。