Documentation ¶
Overview ¶
Package render3d provides various APIs for creating and rendering visual scenes.
The RayCaster API can be used to render scenes quickly. The RecursiveRayTracer API can be used to render very realistic scenes with accurate lighting.
Index ¶
- Constants
- func DestDensity(mat Material, normal, source, dest model3d.Coord3D) float64
- func RGB(c Color) (float64, float64, float64)
- func SampleDest(mat Material, gen *rand.Rand, normal, source model3d.Coord3D) model3d.Coord3D
- func SaveRandomGrid(path string, obj interface{}, rows, cols, imgSize int, colorFunc ColorFunc) error
- func SaveRendering(path string, obj interface{}, origin model3d.Coord3D, width, height int, ...) error
- type AreaLight
- type AsymMaterial
- type BidirPathTracer
- type Camera
- type ColliderObject
- type Color
- type ColorFunc
- type CylinderAreaLight
- type FocusPoint
- type HGMaterial
- func (h *HGMaterial) Ambient() Color
- func (h *HGMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
- func (h *HGMaterial) Emission() Color
- func (h *HGMaterial) SampleSource(gen *rand.Rand, normal, dest model3d.Coord3D) model3d.Coord3D
- func (h *HGMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
- type Image
- type JoinedMaterial
- func (j *JoinedMaterial) Ambient() Color
- func (j *JoinedMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
- func (j *JoinedMaterial) DestDensity(normal, source, dest model3d.Coord3D) float64
- func (j *JoinedMaterial) Emission() Color
- func (j *JoinedMaterial) SampleDest(gen *rand.Rand, normal, dest model3d.Coord3D) model3d.Coord3D
- func (j *JoinedMaterial) SampleSource(gen *rand.Rand, normal, dest model3d.Coord3D) model3d.Coord3D
- func (j *JoinedMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
- type JoinedObject
- type LambertMaterial
- func (l *LambertMaterial) Ambient() Color
- func (l *LambertMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
- func (l *LambertMaterial) Emission() Color
- func (l *LambertMaterial) SampleSource(gen *rand.Rand, normal, dest model3d.Coord3D) model3d.Coord3D
- func (l *LambertMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
- type Material
- type MeshAreaLight
- type Object
- type ParticipatingMedium
- type PhongFocusPoint
- type PhongMaterial
- func (p *PhongMaterial) Ambient() Color
- func (p *PhongMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
- func (p *PhongMaterial) Emission() Color
- func (p *PhongMaterial) SampleSource(gen *rand.Rand, normal, dest model3d.Coord3D) model3d.Coord3D
- func (p *PhongMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
- type PointLight
- type RayCaster
- type RecursiveRayTracer
- type RefractMaterial
- func (r *RefractMaterial) Ambient() Color
- func (r *RefractMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
- func (r *RefractMaterial) DestDensity(normal, source, dest model3d.Coord3D) float64
- func (r *RefractMaterial) Emission() Color
- func (r *RefractMaterial) SampleDest(gen *rand.Rand, normal, source model3d.Coord3D) model3d.Coord3D
- func (r *RefractMaterial) SampleSource(gen *rand.Rand, normal, dest model3d.Coord3D) model3d.Coord3D
- func (r *RefractMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
- type SphereAreaLight
- type SphereFocusPoint
Constants ¶
const DefaultEpsilon = 1e-8
const DefaultFieldOfView = math.Pi / 2
Variables ¶
This section is empty.
Functions ¶
func DestDensity ¶ added in v0.1.12
DestDensity is like mat.SourceDensity, but for SampleDest rather than SampleSource.
If mat is an AsymMaterial, its SampleDest method is used.
func SampleDest ¶ added in v0.1.12
SampleDest is like mat.SampleSource, but it samples a destination direction.
If mat is an AsymMaterial, its SampleDest method is used.
func SaveRandomGrid ¶
func SaveRandomGrid(path string, obj interface{}, rows, cols, imgSize int, colorFunc ColorFunc) error
SaveRandomGrid renders a 3D object from a variety of randomized angles and saves the grid of renderings to a file.
The obj argument must be supported by Objectify.
If colorFunc is non-nil, it is used to determine the color for the visible parts of the model.
func SaveRendering ¶
func SaveRendering(path string, obj interface{}, origin model3d.Coord3D, width, height int, colorFunc ColorFunc) error
SaveRendering renders a 3D object from the given point and saves the image to a file.
The camera will automatically face the center of the object's bounding box.
The obj argument must be supported by Objectify.
If colorFunc is non-nil, it is used to determine the color for the visible parts of the model.
Types ¶
type AreaLight ¶ added in v0.1.5
type AreaLight interface { Object // SampleLight samples a point on the surface of the // light with a probability density proportional to // the sum of the emission R, G, and B. // // Returns both the normal to the light, and the // emission at the sampled point. SampleLight(gen *rand.Rand) (point, normal model3d.Coord3D, emission Color) // TotalEmission gets the integral of the emission // over the area of the light, where the red, green, // and blue components are summed together. TotalEmission() float64 }
AreaLight is a surface that emits light.
For regular path tracing, AreaLight is not needed, since lights are just regular objects. For global illumination methods that trace paths from lights to the scene, AreaLights are needed to sample from the light sources.
An AreaLight should not be reflective in any way; its BSDF should be zero everywhere.
func JoinAreaLights ¶ added in v0.1.5
JoinAreaLights creates a larger AreaLight by combining smaller AreaLights.
type AsymMaterial ¶ added in v0.1.5
type AsymMaterial interface { Material // SampleDest is like SampleSource, but it samples a // destination direction. SampleDest(gen *rand.Rand, normal, source model3d.Coord3D) model3d.Coord3D // DestDensity is like SourceDensity, but for // SampleDest rather than SampleSource. DestDensity(normal, source, dest model3d.Coord3D) float64 }
AsymMaterial is a specialized Material with a different sampling distribution for destination and source vectors.
This is useful for transparent objects, but should not be used for typical materials.
type BidirPathTracer ¶ added in v0.1.5
type BidirPathTracer struct { Camera *Camera // Light is the (possibly joined) area light that is // sampled for light-to-eye paths. Light AreaLight // MaxDepth is the maximum number of edges in a in // either direction. MaxDepth int // MaxLightDepth, if non-zero, limits the number of // light path vertices. // Set to 1 to simply sample the area lights. MaxLightDepth int // MinDepth, if non-zero, is the minimum number of // edges in a path before roulette sampling. // // If unspecified, no roulette sampling is performed // except for Cutoff. MinDepth int // These fields control how many samples are taken per // pixel of the image. // See RecursiveRayTracer for more details. NumSamples int MinSamples int MaxStddev float64 OversaturatedStddevs float64 Convergence func(mean, stddev Color) bool // RouletteDelta is the maximum intensity for roulette // sampling to be performed. // If zero, all deterministic connections are checked. RouletteDelta float64 // PowerHeuristic, if non-zero, is used for multiple // importance sampling of paths. // A value of 2 is recommended, and a value of 1 is // equivalent to the balance heuristic used by // default. PowerHeuristic float64 // See RecursiveRayTracer for more details. Cutoff float64 Antialias float64 Epsilon float64 LogFunc func(frac float64, sampleRate float64) }
BidirPathTracer is a bidirectional path traceb.
Lights in the path tracer should be part of the scene, but should also be provided as an AreaLight.
func (*BidirPathTracer) RayVariance ¶ added in v0.1.5
func (b *BidirPathTracer) RayVariance(obj Object, width, height, samples int) float64
RayVariance estimates the variance of the color components in the rendered image for a single sample.
The variance is averaged over every color component in the image.
func (*BidirPathTracer) Render ¶ added in v0.1.5
func (b *BidirPathTracer) Render(img *Image, obj Object)
Render renders the object to an image.
func (*BidirPathTracer) RenderVariance ¶ added in v0.1.15
func (b *BidirPathTracer) RenderVariance(img *Image, obj Object, numSamples int)
RenderVariance computes the variance per pixel using a fixed number of rays per pixel, and writes the results as pixels in an image.
type Camera ¶
type Camera struct { // Origin is the location of the camera, from whence // lines if sight originate. Origin model3d.Coord3D // ScreenX is the (normalized) direction in 3D space // that is rendered along the x-axis in images. // In other words, it is parallel to the x-axis on the // viewing plane. ScreenX model3d.Coord3D // ScreenY is the (normalized) direction in 3D space // that is rendered along the y-axis in images. // See ScreenX. ScreenY model3d.Coord3D // FieldOfView is the angle spanning the viewing plane // from the camera's origin. // // This is measured in radians. FieldOfView float64 }
A Camera defines a viewer's position, orientation, and field of view for rendering.
The right-hand rule is used to determine which way the camera is facing, such that if the viewing plane goes from top to bottom and left to right, then the rays of sight go away from the camera's origin. To reverse this, simply use a negative FieldOfView.
func NewCameraAt ¶
NewCameraAt creates a new Camera that is looking at a point from another point.
If fov is 0, DefaultFieldOfView is used.
The image axes are automatically determined.
type ColliderObject ¶
A ColliderObject wraps a model3d.Collider in the Object interface, using a constant material.
func (*ColliderObject) Cast ¶
func (c *ColliderObject) Cast(r *model3d.Ray) (model3d.RayCollision, Material, bool)
Cast returns the first ray collision.
func (*ColliderObject) Max ¶
func (c *ColliderObject) Max() model3d.Coord3D
Max gets the maximum of the bounding box.
func (*ColliderObject) Min ¶
func (c *ColliderObject) Min() model3d.Coord3D
Min gets the minimum of the bounding box.
type Color ¶
Color is a linear RGB color, where X, Y, and Z store R, G, and B respectively.
Note that these colors are NOT sRGB (the standard), since sRGB values do not represent linear brightness.
Colors should be positive, but they are not bounded on the positive side, since light isn't in the real world.
func NewColorRGB ¶
NewColorRGB creates a Color from sRGB values.
type ColorFunc ¶
type ColorFunc func(c model3d.Coord3D, rc model3d.RayCollision) Color
ColorFunc determines a color for collisions on a surface. It is used for convenience methods where specifying a material would be too cumbersome.
type CylinderAreaLight ¶ added in v0.2.0
type CylinderAreaLight struct { Object // contains filtered or unexported fields }
CylinderAreaLight is a cylinder implementing an area light.
func NewCylinderAreaLight ¶ added in v0.2.0
func NewCylinderAreaLight(c *model3d.Cylinder, emission Color) *CylinderAreaLight
NewCylinderAreaLight turns a cylinder collider into an area light.
func (*CylinderAreaLight) SampleLight ¶ added in v0.2.0
func (*CylinderAreaLight) TotalEmission ¶ added in v0.2.0
func (c *CylinderAreaLight) TotalEmission() float64
type FocusPoint ¶
type FocusPoint interface { // SampleFocus samples a source direction for a // collision, focusing on some aspect of a scene. SampleFocus(gen *rand.Rand, mat Material, point, normal, dest model3d.Coord3D) model3d.Coord3D // FocusDensity computes the probability density ratio // of sampling the source direction from a point, // relative to density on a unit sphere. FocusDensity(mat Material, point, normal, source, dest model3d.Coord3D) float64 }
A FocusPoint is some part of the scene that warrants extra rays (e.g. part of a light).
Focus points perform importance sampling such that the point or object of interest is sampled more.
type HGMaterial ¶
type HGMaterial struct { // G is a control parameter in [-1, 1]. // -1 is backscattering, 1 is forward scattering. G float64 // ScatterColor controls how much light is actually // scattered vs. absorbed. ScatterColor Color IgnoreNormals bool }
HGMaterial implements the Henyey-Greenstein phase function for ray scattering.
This material cancels out the normal cosine term that is introduced by the rendering equation. To ignore normals and not cancel, set IgnoreNormals.
func (*HGMaterial) Ambient ¶
func (h *HGMaterial) Ambient() Color
func (*HGMaterial) Emission ¶
func (h *HGMaterial) Emission() Color
func (*HGMaterial) SampleSource ¶
func (*HGMaterial) SourceDensity ¶
func (h *HGMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
type Image ¶
func (*Image) CopyFrom ¶
CopyFrom copies the image img into this image at the given coordinates x, y in i.
This can be used to copy a smaller image i1 into a larger image i.
func (*Image) FillRange ¶
func (i *Image) FillRange()
FillRange scales the color values so that the largest color component is exactly 1.
func (*Image) Gray ¶
Gray creates a standard library Gray image from i.
Values outside the range of [0, 1] are clamped.
func (*Image) RGBA ¶
RGBA creates a standard library RGBA image from i.
Values outside the range of [0, 1] are clamped.
type JoinedMaterial ¶
type JoinedMaterial struct { Materials []Material // Probs contains probabilities for importance // sampling each material. // The probabilities should sum to 1. Probs []float64 }
A JoinedMaterial adds the BSDFs of multiple materials.
It also importance samples from each BSDF according to pre-determined probabilities.
func (*JoinedMaterial) Ambient ¶
func (j *JoinedMaterial) Ambient() Color
func (*JoinedMaterial) BSDF ¶
func (j *JoinedMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
func (*JoinedMaterial) DestDensity ¶ added in v0.1.12
func (j *JoinedMaterial) DestDensity(normal, source, dest model3d.Coord3D) float64
func (*JoinedMaterial) Emission ¶
func (j *JoinedMaterial) Emission() Color
func (*JoinedMaterial) SampleDest ¶ added in v0.1.12
func (*JoinedMaterial) SampleSource ¶
func (*JoinedMaterial) SourceDensity ¶
func (j *JoinedMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
type JoinedObject ¶
type JoinedObject []Object
A JoinedObject combines multiple Objects.
func (JoinedObject) Cast ¶
func (j JoinedObject) Cast(r *model3d.Ray) (model3d.RayCollision, Material, bool)
Cast casts the ray onto the objects and chooses the closest ray collision.
func (JoinedObject) Max ¶
func (j JoinedObject) Max() model3d.Coord3D
Max gets the maximum of the bounding box.
func (JoinedObject) Min ¶
func (j JoinedObject) Min() model3d.Coord3D
Min gets the minimum of the bounding box.
type LambertMaterial ¶
LambertMaterial is a completely matte material.
func (*LambertMaterial) Ambient ¶
func (l *LambertMaterial) Ambient() Color
func (*LambertMaterial) BSDF ¶
func (l *LambertMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
func (*LambertMaterial) Emission ¶
func (l *LambertMaterial) Emission() Color
func (*LambertMaterial) SampleSource ¶
func (*LambertMaterial) SourceDensity ¶
func (l *LambertMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
type Material ¶
type Material interface { // BSDF gets the amount of light that bounces off the // surface into a given direction. // It differs slightly from the usual meaning of BRDF, // since it may include refractions into the surface. // Thus, the BSDF is a function on the entire sphere, // not just a hemisphere. // // Both arguments should be unit vectors. // // The source argument specifies the direction that // light is coming in and hitting the surface. // // The dest argument specifies the direction in which // the light is to reflect or refract, and where we // would like to know the intensity. // // Returns a multiplicative mask for incoming light. // // The outgoing flux should be less than or equal to // the incoming flux. // Thus, the outgoing Color should be, on expectation // over random unit dest vectors weighted by the // cosine of the outgoing angle, less than 1 in all // components. BSDF(normal, source, dest model3d.Coord3D) Color // SampleSource samples a random source vector for a // given dest vector, possibly with a non-uniform // distribution. // // The main purpose of SampleSource is to compute a // the mean outgoing light using importance sampling. // // The densities returned by SourceDensity correspond // to this sampling distribution. // // The gen argument is used for sampling. // This is more efficient than using a shared RNG for // multithreaded rendering. SampleSource(gen *rand.Rand, normal, dest model3d.Coord3D) model3d.Coord3D // SourceDensity computes the density ratio of // arbitrary source directions under the distribution // used by SampleSource(). These ratios measure the // density divided by the density on a unit sphere. // Thus, they measure density per steradian. SourceDensity(normal, source, dest model3d.Coord3D) float64 // Emission is the amount of light directly given off // by the surface. Emission() Color // Ambient is the baseline color to use for all // collisions with this surface for rendering. // It ensures that every surface is rendered at least // some amount. Ambient() Color }
A Material determines how light bounces off a locally flat surface.
type MeshAreaLight ¶ added in v0.1.5
type MeshAreaLight struct { Object // contains filtered or unexported fields }
MeshAreaLight is an AreaLight for the surface of a mesh.
func NewMeshAreaLight ¶ added in v0.1.5
func NewMeshAreaLight(mesh *model3d.Mesh, emission Color) *MeshAreaLight
NewMeshAreaLight creates an efficient area light from the triangle mesh.
func (*MeshAreaLight) SampleLight ¶ added in v0.1.5
func (*MeshAreaLight) TotalEmission ¶ added in v0.2.0
func (m *MeshAreaLight) TotalEmission() float64
type Object ¶
type Object interface { model3d.Bounder // Cast finds the first collision with ray r. // // It returns not only the ray collision, but also the // material on the surface of the object at the point. // // The final return value indicates if there was a // collision or not. Cast(r *model3d.Ray) (model3d.RayCollision, Material, bool) }
An Object is a renderable 3D object.
func MatrixMultiply ¶
MatrixMultiply left-multiplies coordinates in an object by a matrix m. It can be used for rotations, scaling, etc.
func Objectify ¶
Objectify turns a mesh, collider, or Object into a new Object with a specified coloration.
Accepted object types are:
- render3d.Object
- *model3d.Mesh
- model3d.Collider
The colorFunc is used to color the object's material. If colorFunc is used, a default yellow color is used, unless the object already has an associated material.
type ParticipatingMedium ¶
type ParticipatingMedium struct { Collider model3d.Collider Material Material // Lambda controls how likely a collision is. // Larger lambda means lower probability. // Mean distance is 1 / lambda. Lambda float64 }
ParticipatingMedium is a volume in which a ray has a probability of hitting a particle, in which the collision probability increases with distance.
It is recommended that you use an HGMaterial with this object type.
Normals reported for collisions are random and have no bearing on how rays are scattered, since the medium simulates complex particles which either reflect or refract light. Hence, materials which use normals should not be employed.
func (*ParticipatingMedium) Cast ¶
func (p *ParticipatingMedium) Cast(r *model3d.Ray) (model3d.RayCollision, Material, bool)
Cast returns the first probabilistic ray collision.
func (*ParticipatingMedium) Max ¶
func (p *ParticipatingMedium) Max() model3d.Coord3D
Max gets the maximum of the bounding box.
func (*ParticipatingMedium) Min ¶
func (p *ParticipatingMedium) Min() model3d.Coord3D
Min gets the minimum of the bounding box.
type PhongFocusPoint ¶
type PhongFocusPoint struct { Target model3d.Coord3D // Alpha is the amount of focus to put on the target // direction. Alpha float64 // MaterialFilter, if non-nil, is called to see if a // given material needs to be focused on a light. MaterialFilter func(m Material) bool }
A PhongFocusPoint uses a distribution proportional to cos(theta)^alpha, just like phong shading.
func (*PhongFocusPoint) FocusDensity ¶
func (p *PhongFocusPoint) FocusDensity(mat Material, point, normal, source, dest model3d.Coord3D) float64
FocusDensity gives the probability density ratio for the given direction.
func (*PhongFocusPoint) SampleFocus ¶
func (p *PhongFocusPoint) SampleFocus(gen *rand.Rand, mat Material, point, normal, dest model3d.Coord3D) model3d.Coord3D
SampleFocus samples a point that is more concentrated in the direction of Target.
type PhongMaterial ¶
type PhongMaterial struct { // Alpha controls the specular light, where 0 means // unconcentrated, and higher values mean more // concentrated. Alpha float64 SpecularColor Color DiffuseColor Color EmissionColor Color AmbientColor Color // NoFluxCorrection can be set to true to disable // the max-Phong denominator. NoFluxCorrection bool }
PhongMaterial implements the Phong reflection model.
https://en.wikipedia.org/wiki/Phong_reflection_model.
func (*PhongMaterial) Ambient ¶
func (p *PhongMaterial) Ambient() Color
func (*PhongMaterial) BSDF ¶
func (p *PhongMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
func (*PhongMaterial) Emission ¶
func (p *PhongMaterial) Emission() Color
func (*PhongMaterial) SampleSource ¶
SampleSource uses importance sampling to sample in proportion to the reflection weight of a direction.
If there is a diffuse lighting term, it is mixed in for some fraction of the samples.
func (*PhongMaterial) SourceDensity ¶
func (p *PhongMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
SourceDensity gets the density of the SampleSource distribution.
type PointLight ¶
type PointLight struct { Origin model3d.Coord3D Color Color // If true, the ray tracer should use an inverse // square relation to dim this light as it gets // farther from an object. QuadDropoff bool }
A PointLight is a light eminating from a point and going in all directions equally.
func (*PointLight) ColorAtDistance ¶
func (p *PointLight) ColorAtDistance(distance float64) Color
ColorAtDistance gets the Color produced by this light at some distance.
func (*PointLight) ShadeCollision ¶
func (p *PointLight) ShadeCollision(normal, pointToLight model3d.Coord3D) Color
ShadeCollision determines a scaled color for a surface light collision.
type RayCaster ¶
type RayCaster struct { Camera *Camera Lights []*PointLight }
A RayCaster renders objects using simple one-step ray tracing with no recursion.
type RecursiveRayTracer ¶
type RecursiveRayTracer struct { Camera *Camera Lights []*PointLight // FocusPoints are functions which cause rays to // bounce more in certain directions, with the aim of // reducing variance with no bias. FocusPoints []FocusPoint // FocusPointProbs stores, for each FocusPoint, the // probability that this focus point is used to sample // a ray (rather than the BRDF). FocusPointProbs []float64 // MaxDepth is the maximum number of recursions. // Setting to 0 is almost equivalent to RayCast, but // the ray tracer still checks for shadows. MaxDepth int // NumSamples is the number of rays to sample. NumSamples int // MinSamples and MaxStddev control early stopping for // pixel sampling. If they are both non-zero, then // MinSamples rays are sampled, and then more rays are // sampled until the pixel standard deviation goes // below MaxStddev, or NumSamples samples are taken. // // Additionally, see Convergence for to customize this // stopping criterion. MinSamples int MaxStddev float64 // OversaturatedStddevs controls how few samples are // taken at bright parts of the scene. // // If specified, a pixel may stop being sampled after // MinSamples samples if the brightness of that pixel // is more than OversaturatedStddevs standard // deviations above the maximum brightness (1.0). // // This can override MaxStddev, since bright parts of // the image may have high standard deviations despite // having uninteresting specific values. OversaturatedStddevs float64 // Convergence implements a custom convergence // criterion. // // If specified, MaxStddev and OversaturatedStddevs // are not used. // // Convergence is called with the current mean and // variance of a pixel, and a return value of true // indicates that the ray has converged. Convergence func(mean, stddev Color) bool // Cutoff is the maximum brightness for which // recursion is performed. If small but non-zero, the // number of rays traced can be reduced. Cutoff float64 // Antialias, if non-zero, specifies a fraction of a // pixel to perturb every ray's origin. // Thus, 1 is maximum, and 0 means no change. Antialias float64 // Epsilon is a small distance used to move away from // surfaces before bouncing new rays. // If nil, DefaultEpsilon is used. Epsilon float64 // LogFunc, if specified, is called periodically with // progress information. // // The frac argument specifies the fraction of pixels // which have been colored. // // The sampleRate argument specifies the mean number // of rays traced per pixel. LogFunc func(frac float64, sampleRate float64) }
A RecursiveRayTracer renders objects using recursive tracing with random sampling.
func (*RecursiveRayTracer) RayVariance ¶
func (r *RecursiveRayTracer) RayVariance(obj Object, width, height, samples int) float64
RayVariance estimates the variance of the color components in the rendered image for a single ray path. It is intended to be used to quickly judge how well importance sampling is working.
The variance is averaged over every color component in the image. Antialiasing is not used.
func (*RecursiveRayTracer) Render ¶
func (r *RecursiveRayTracer) Render(img *Image, obj Object)
Render renders the object to an image.
func (*RecursiveRayTracer) RenderVariance ¶ added in v0.1.15
func (r *RecursiveRayTracer) RenderVariance(img *Image, obj Object, numSamples int)
RenderVariance computes the variance per pixel using a fixed number of rays per pixel, and writes the results as pixels in an image.
type RefractMaterial ¶
type RefractMaterial struct { // IndexOfRefraction is the index of refraction of // this material. Values greater than one simulate // materials like water or glass, where light travels // more slowly than in space. IndexOfRefraction float64 // RefractColor is the mask used for refracted flux. RefractColor Color // SpecularColor, if specified, indicates that Fresnel // reflection should be used with the given color. // Typically, if specified, the color of 1's should be // used for a white reflection. SpecularColor Color }
RefractMaterial is an approximate refraction material based on a delta function.
Unlike other BSDFs, the BSDF of RefractMaterial is asymmetric, since energy is concentrated and spread out due to refraction.
func (*RefractMaterial) Ambient ¶
func (r *RefractMaterial) Ambient() Color
func (*RefractMaterial) BSDF ¶
func (r *RefractMaterial) BSDF(normal, source, dest model3d.Coord3D) Color
func (*RefractMaterial) DestDensity ¶ added in v0.1.5
func (r *RefractMaterial) DestDensity(normal, source, dest model3d.Coord3D) float64
func (*RefractMaterial) Emission ¶
func (r *RefractMaterial) Emission() Color
func (*RefractMaterial) SampleDest ¶ added in v0.1.5
func (*RefractMaterial) SampleSource ¶
func (*RefractMaterial) SourceDensity ¶
func (r *RefractMaterial) SourceDensity(normal, source, dest model3d.Coord3D) float64
type SphereAreaLight ¶ added in v0.1.5
type SphereAreaLight struct { Object // contains filtered or unexported fields }
SphereAreaLight is a perfect sphere implementing an area light.
func NewSphereAreaLight ¶ added in v0.1.5
func NewSphereAreaLight(s *model3d.Sphere, emission Color) *SphereAreaLight
NewSphereAreaLight turns a sphere collider into an area light.
func (*SphereAreaLight) SampleLight ¶ added in v0.1.5
func (*SphereAreaLight) TotalEmission ¶ added in v0.2.0
func (s *SphereAreaLight) TotalEmission() float64
type SphereFocusPoint ¶
type SphereFocusPoint struct { // Center and Radius controls the position and size of // the sphere to sample. Center model3d.Coord3D Radius float64 // MaterialFilter, if non-nil, is called to see if a // given material needs to be focused on a light. MaterialFilter func(m Material) bool }
SphereFocusPoint uses a distribution that samples rays which hit a specific sphere.
func (*SphereFocusPoint) FocusDensity ¶
func (s *SphereFocusPoint) FocusDensity(mat Material, point, normal, source, dest model3d.Coord3D) float64
FocusDensity gives the probability density ratio for the given direction.
func (*SphereFocusPoint) SampleFocus ¶
func (s *SphereFocusPoint) SampleFocus(gen *rand.Rand, mat Material, point, normal, dest model3d.Coord3D) model3d.Coord3D
SampleFocus samples a point that is more concentrated in the direction of Target.