Click or drag to resize
Ab4d.SharpEngine logo

CameraUtilsGetOrthographicScreenSize Method

GetOrthographicScreenSize calculates a size on screen (in same units as viewSize - without DPI scale) of a size in 3D space (worldSize) that is shown with orthographic camera with cameraWidth and in SceneView with viewSize.

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public static Vector2 GetOrthographicScreenSize(
	Vector2 worldSize,
	float cameraWidth,
	Vector2 viewport3DSize
)

Parameters

worldSize  Vector2
size in 3D space as Vector2
cameraWidth  Single
camera's width
viewport3DSize  Vector2
SceneView's size as Vector2

Return Value

Vector2
size on screen as Vector2
See Also