 |
MathUtilsProject Method |
Projects a 3D vector from object space into screen space.
Namespace: Ab4d.SharpEngine.UtilitiesAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntaxpublic static Vector3 Project(
in Vector3 vector,
float x,
float y,
float width,
float height,
float minZ,
float maxZ,
in Matrix4x4 worldViewProjection
)
Parameters
- vector Vector3
- The vector to project.
- x Single
- The X position of the viewport.
- y Single
- The Y position of the viewport.
- width Single
- The width of the viewport.
- height Single
- The height of the viewport.
- minZ Single
- The minimum depth of the viewport.
- maxZ Single
- The maximum depth of the viewport.
- worldViewProjection Matrix4x4
- World-view-projection matrix.
Return Value
Vector3Vector in screen space.
See Also