Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UsdLux] Add explanation of UsdLux quantities and behavior #3182

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion pxr/usd/usdLux/distantLight.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,16 @@ class UsdLuxDistantLight : public UsdLuxNonboundableLightBase
// --------------------------------------------------------------------- //
// ANGLE
// --------------------------------------------------------------------- //
/// Angular size of the light in degrees.
/// Angular diameter of the light in degrees.
/// As an example, the Sun is approximately 0.53 degrees as seen from Earth.
/// Higher values broaden the light and therefore soften shadow edges.
///
/// This value is assumed to be in the range `0 <= angle < 360`, and will
/// be clipped to this range. Note that this implies that we can have a
/// distant light emitting from more than a hemispherical area of light
/// if angle > 180. While this is valid, it is possible that for large
/// angles a DomeLight may provide better performance.
///
///
/// | ||
/// | -- | -- |
Expand Down
Loading