p

swiftvis2

raytrace

package raytrace

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class AmbientLight(c: RTColor) extends Light with Product with Serializable
  2. case class BoundingBox(min: Point, max: Point) extends Box with Bounds with Product with Serializable
  3. case class BoundingSphere(center: Point, radius: Double) extends Sphere with Bounds with Product with Serializable
  4. trait Bounds extends AnyRef
  5. trait BoundsBuilder[B] extends Serializable
  6. trait Box extends AnyRef
  7. case class DirectionLight(col: RTColor, v: Vect) extends Light with Product with Serializable
  8. case class GeomBox(min: Point, max: Point, color: (Point) ⇒ RTColor, reflect: (Point) ⇒ Double) extends Geometry with Box with Product with Serializable
  9. class GeomCylinder extends Geometry
  10. class GeomEllipsoid extends Geometry
  11. class GeomPolyFunc extends Geometry
  12. class GeomPolygon extends Geometry
  13. case class GeomSphere(center: Point, radius: Double, color: (Point) ⇒ RTColor, reflect: (Point) ⇒ Double) extends Geometry with Sphere with Product with Serializable
  14. trait Geometry extends Serializable
  15. case class IntersectData(time: Double, point: Point, norm: Vect, color: RTColor, reflect: Double, geom: Geometry) extends Product with Serializable
  16. class KDTreeGeometry[B <: Bounds] extends Geometry
  17. abstract class Light extends AnyRef
  18. 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.

  19. class ListScene extends Geometry with Scene
  20. class OctreeScene extends Geometry with Scene
  21. case class OffsetGeometry(original: Geometry, offset: Vect) extends Geometry with Product with Serializable
  22. case class Point(x: Double, y: Double, z: Double) extends Product with Serializable
  23. class PointColorFunc extends AnyRef
  24. case class PointLight(col: RTColor, point: Point, unlitGeom: Set[Geometry] = Set.empty) extends Light with Product with Serializable
  25. case class RTColor(r: Double, g: Double, b: Double, a: Double = 1.0) extends Product with Serializable
  26. trait RTImage extends AnyRef
  27. case class Ray(p0: Point, dir: Vect) extends Product with Serializable
  28. trait Scene extends AnyRef
  29. trait Sphere extends AnyRef
  30. case class SphereTextureColorFunc(img: BufferedImage, sphereCenter: Point) extends (Point) ⇒ RTColor with Product with Serializable
  31. case class TextureColorFunc(img: BufferedImage, topLeft: Point, right: Vect, down: Vect) extends (Point) ⇒ RTColor with Product with Serializable
  32. case class Vect(x: Double, y: Double, z: Double) extends Product with Serializable

Value Members

  1. object BoundingBox extends Serializable
  2. object BoundingSphere extends Serializable
  3. object BoxBoundsBuilder extends BoundsBuilder[BoundingBox]
  4. object IntersectData extends Serializable
  5. object KDTreeGeometry extends Serializable
  6. object LinearViewPath extends Serializable
  7. object RTColor extends Serializable
  8. object Ray extends Serializable
  9. object RayTrace
  10. object Sphere
  11. object SphereBoundsBuilder extends BoundsBuilder[BoundingSphere]

Ungrouped