Skip to content

Instantly share code, notes, and snippets.

@ibreathebsb
Last active March 10, 2025 07:20
Show Gist options
  • Save ibreathebsb/adc35eb27f94141d3878d942ff678f5d to your computer and use it in GitHub Desktop.
Save ibreathebsb/adc35eb27f94141d3878d942ff678f5d to your computer and use it in GitHub Desktop.
unreal notes

ViewSpace

Z+ = Forward, Y+ = Up, X+ = Right

//SceneView.cpp

void FViewMatrices::Init(const FMinimalInitializer& Initializer);

// first 3 rows of ViewRotationMatrix
// {0, 0, 1, 0}
// {1, 0, 0, 0}
// {0, 1, 0, 0}

Clip space Z=1 is the near plane

See the comment in code

//SceneView.h

struct FSceneViewProjectionData
{
	/** UE projection matrix projects such that clip space Z=1 is the near plane, and Z=0 is the infinite far plane. */
	FMatrix ProjectionMatrix;
 }

ProjectionMatrix

void FMinimalViewInfo::CalculateProjectionMatrixGivenViewRectangle(const FMinimalViewInfo& ViewInfo, TEnumAsByte<enum EAspectRatioAxisConstraint> AspectRatioAxisConstraint, const FIntRect& ConstrainedViewRectangle, FSceneViewProjectionData& InOutProjectionData)


FReversedZPerspectiveMatrix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment