package raytrace
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class AmbientLight(c: RTColor) extends Light with Product with Serializable
- case class BoundingBox(min: Point, max: Point) extends Box with Bounds with Product with Serializable
- case class BoundingSphere(center: Point, radius: Double) extends Sphere with Bounds with Product with Serializable
- trait Bounds extends AnyRef
- trait BoundsBuilder[B] extends Serializable
- trait Box extends AnyRef
- case class DirectionLight(col: RTColor, v: Vect) extends Light with Product with Serializable
- case class GeomBox(min: Point, max: Point, color: (Point) ⇒ RTColor, reflect: (Point) ⇒ Double) extends Geometry with Box with Product with Serializable
- class GeomCylinder extends Geometry
- class GeomEllipsoid extends Geometry
- class GeomPolyFunc extends Geometry
- class GeomPolygon extends Geometry
- case class GeomSphere(center: Point, radius: Double, color: (Point) ⇒ RTColor, reflect: (Point) ⇒ Double) extends Geometry with Sphere with Product with Serializable
- trait Geometry extends Serializable
- case class IntersectData(time: Double, point: Point, norm: Vect, color: RTColor, reflect: Double, geom: Geometry) extends Product with Serializable
- class KDTreeGeometry[B <: Bounds] extends Geometry
- abstract class Light extends AnyRef
-
case class
LinearViewPath(stops: Seq[StopPoint], durations: Seq[Double], easing: (Double) ⇒ Double = LinearViewPath.LinearEasing) extends Product with Serializable
This class represents a path for a point of view to move along for rendering.
This class represents a path for a point of view to move along for rendering. The first argument is the points that the path hits with durations for how long it stops there. The second is the durations to take between stops. It should be one shorter than the stops.
- class ListScene extends Geometry with Scene
- class OctreeScene extends Geometry with Scene
- case class OffsetGeometry(original: Geometry, offset: Vect) extends Geometry with Product with Serializable
- case class Point(x: Double, y: Double, z: Double) extends Product with Serializable
- class PointColorFunc extends AnyRef
- case class PointLight(col: RTColor, point: Point, unlitGeom: Set[Geometry] = Set.empty) extends Light with Product with Serializable
- case class RTColor(r: Double, g: Double, b: Double, a: Double = 1.0) extends Product with Serializable
- trait RTImage extends AnyRef
- case class Ray(p0: Point, dir: Vect) extends Product with Serializable
- trait Scene extends AnyRef
- trait Sphere extends AnyRef
- case class SphereTextureColorFunc(img: BufferedImage, sphereCenter: Point) extends (Point) ⇒ RTColor with Product with Serializable
- case class TextureColorFunc(img: BufferedImage, topLeft: Point, right: Vect, down: Vect) extends (Point) ⇒ RTColor with Product with Serializable
- case class Vect(x: Double, y: Double, z: Double) extends Product with Serializable
Value Members
- object BoundingBox extends Serializable
- object BoundingSphere extends Serializable
- object BoxBoundsBuilder extends BoundsBuilder[BoundingBox]
- object IntersectData extends Serializable
- object KDTreeGeometry extends Serializable
- object LinearViewPath extends Serializable
- object RTColor extends Serializable
- object Ray extends Serializable
- object RayTrace
- object Sphere
- object SphereBoundsBuilder extends BoundsBuilder[BoundingSphere]