package geometry
Type Members
-
trait
Geometry[Alg[x[_]] <: Algebra[x[_]], F[_], A] extends AnyRef
Geometry describes how to draw data within a plot (e.g.
Geometry describes how to draw data within a plot (e.g. a scatter plot or a line).
The type -
Algrepresents theAlgebraneeded to render this geometry; -Fis the effect type the geometry is rendered to; and -Ais the type of the data. -
final
case class
Scatter[Alg[x[_]] <: Layout[x[_]] with Shape[x[_]], F[_], G[_], A](data: G[A])(f: (A) ⇒ Picture[Alg, F, Unit])(implicit evidence$1: Traverse[G], evidence$2: AsPoint[A]) extends Geometry[Alg, F, A] with Product with Serializable
Represents a scatterplot of the given data.