- All Implemented Interfaces:
Raytraceable
,Light
,Scattering
,Manageable
,Shareable
,Emitter
,Light
,Scattering
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsFields inherited from class de.grogra.imp3d.objects.DirectionalLight
powerDensity$FIELD, ZERO
Fields inherited from class de.grogra.imp3d.objects.LightBase
color, color$FIELD, numberofrays, numberofrays$FIELD, raylength, raylength$FIELD, shadowless$FIELD, visualize, visualize$FIELD
Fields inherited from interface de.grogra.ray.physics.Light
AMBIENT, AREA, DIRECTIONAL, NO_LIGHT, POINT, SKY
Fields inherited from interface de.grogra.ray.physics.Scattering
DELTA_FACTOR, IS_NON_OPAQUE, MIN_UNUSED_FLAG, NEEDS_NORMAL, NEEDS_POINT, NEEDS_TANGENTS, NEEDS_TRANSFORMATION, NEEDS_UV, RANDOM_RAYS_GENERATE_ORIGINS
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondouble
computeExitance
(Environment env, Spectrum exitance) Evaluates the exitance function for given input.protected void
draw
(Tuple3f color, RenderState rs) void
generateRandomOrigins
(Environment env, RayList out, Random rnd) Pseudorandomly generates, for the given input, a set of origins for this emitter.float
double
getTotalPower
(Environment env) Computes the total power of this light source which is emitted to the region defined byenv.bounds
.void
setRadius
(float value) Methods inherited from class de.grogra.imp3d.objects.DirectionalLight
accept, computeBSDF, createRaytracerLeaf, generateRandomRays, getLightType, getPowerDensity, setPowerDensity
Methods inherited from class de.grogra.imp3d.objects.LightBase
completeRay, getAverageColor, getColor, getFlags, getNumberofrays, getRaylength, isIgnoredWhenHit, isShadowless, isVisualize, resolveLight, setColor, setNumberofrays, setRaylength, setShadowless, setVisualize
Methods inherited from class de.grogra.persistence.ShareableBase
addReference, appendReferencesTo, fieldModified, getProvider, getStamp, initProvider, manageableReadResolve, manageableWriteReplace, removeReference
-
Field Details
-
$TYPE
-
radius$FIELD
-
-
Constructor Details
-
LaserLight
public LaserLight()
-
-
Method Details
-
getTotalPower
Description copied from interface:Light
Computes the total power of this light source which is emitted to the region defined byenv.bounds
. Note that the computed value is not necessarily exact: It should be used just as a hint, e.g., when one of a set of lights has to be chosen randomly on the basis of their relative power.- Specified by:
getTotalPower
in interfaceLight
- Overrides:
getTotalPower
in classDirectionalLight
- Parameters:
env
- environment which defines the bounds of the scene- Returns:
- total power emitted to the region
env.bounds
-
generateRandomOrigins
Description copied from interface:Emitter
Pseudorandomly generates, for the given input, a set of origins for this emitter. They are generated such that they can be used for Monte Carlo-based photon tracing algorithms in the following way.At first, we consider the case where the emitter is in fact a light source. Let L(x, ω, ν) be the emitted spectral radiance for the frequency ν at the light's surface point x in direction ω. The radiant exitance (emitted spectral power per area) at x is defined as
L0(x, ν) = ∫ cos θ L(x, ω, ν) dω where θ is the angle between the surface normal and ω. Now the directional distribution of the emitted radiance at x can be described by the densityL1(x, ω, ν) = L(x, ω, ν) / L0(x, ν) so that the radiance is split intoL(x, ω, ν) = L0(x, ν) L1(x, ω, ν) Let oi and si denote the origins and spectra of the N generated rays (N =rays.size
). Then for a function f(x, ν) which is to be integrated over the light surface, the sum1 / N ∑i si(ν) f(oi, ν) is an unbiased estimate for the integral∫ L0(x, ν) f(x, ν) dA The integral ranges over the whole surface A of the light source. As a consequence, the spectrum of a ray is to be considered as the ray's radiant spectral power.Now if the emitter is a sensor, let W(x, ω, ν) be the emitted spectral importance for frequency ν at the sensors's surface point x in direction ω. The quantities W0(x, ν) and W1(x, ω, ν) are defined similarly to the case of light sources:
W0(x, ν) = ∫ cos θ W(x, ω, ν) dω The formulas for light sources are valid for sensors if the L-quantites are replaced by the corresponding W-quantities.
W(x, ω, ν) = W0(x) W1(x, ω, ν)Let px be the probability density used for the ray origin, then the field
originDensity
is set to px(oi) for each ray. For emitters which are concentrated at a single point (e.g., point lights) px is not a regular function, the valueoriginDensity
will be set to a multiple ofScattering.DELTA_FACTOR
.The ray properties which are not mentioned in the given formulas are neither used nor modified. These are the direction and its density.
- Specified by:
generateRandomOrigins
in interfaceEmitter
- Overrides:
generateRandomOrigins
in classDirectionalLight
- Parameters:
env
- the environmentout
- the outgoing rays to be generatedrnd
- pseudorandom generator
-
computeExitance
Description copied from interface:Emitter
Evaluates the exitance function for given input. The computed value is the spectrum of the radiant exitance (emitted power per area) L0j(x, ν) at the pointenv.point
in case of light sources, or the corresponding function W0j(x, ν) in case of sensors.The returned value is the value of the probability density px that would be calculated by
Emitter.generateRandomOrigins(de.grogra.ray.physics.Environment, de.grogra.ray.util.RayList, java.util.Random)
ifenv.point
happened to be one of the randomly generated origins.- Specified by:
computeExitance
in interfaceEmitter
- Overrides:
computeExitance
in classDirectionalLight
- Parameters:
env
- the environment for scatteringexitance
- the exitance values will be placed in here- Returns:
- the value of the probability density for the ray origin
-
draw
- Overrides:
draw
in classDirectionalLight
-
getManageableType
- Specified by:
getManageableType
in interfaceManageable
- Overrides:
getManageableType
in classDirectionalLight
-
getRadius
public float getRadius() -
setRadius
public void setRadius(float value)
-