doodle.algebra.Path.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015 Creative Scala
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package doodle
package algebra
import doodle.core.Angle
import doodle.core.ClosedPath
import doodle.core.OpenPath
import doodle.core.PathElement
import doodle.core.Point
trait Path extends Algebra {
def path(path: ClosedPath): Drawing[Unit]
def path(path: OpenPath): Drawing[Unit]
// Derived methods ------------
def regularPolygon(sides: Int, radius: Double): Drawing[Unit] = {
path(ClosedPath(PathElement.regularPolygon(sides, radius)))
}
def star(
points: Int,
outerRadius: Double,
innerRadius: Double
): Drawing[Unit] = {
path(ClosedPath(PathElement.star(points, outerRadius, innerRadius)))
}
def roundedRectangle(
width: Double,
height: Double,
radius: Double
): Drawing[Unit] = {
path(ClosedPath(PathElement.roundedRectangle(width, height, radius)))
}
/** Create an equilateral triangle with the given side length. */
def equilateralTriangle(width: Double): Drawing[Unit] = {
path(ClosedPath(PathElement.equilateralTriangle(width)))
}
def interpolatingSpline(points: Seq[Point]): Drawing[Unit] =
path(OpenPath(PathElement.interpolatingSpline(points)))
def catmulRom(points: Seq[Point], tension: Double = 0.5): Drawing[Unit] =
path(OpenPath(PathElement.catmulRom(points, tension)))
}
/** Constructors for Path algebra */
trait PathConstructor {
self: BaseConstructor { type Algebra <: Path } =>
def path(path: ClosedPath): Picture[Unit] =
new Picture[Unit] {
def apply(implicit algebra: Algebra): algebra.Drawing[Unit] =
algebra.path(path)
}
def path(path: OpenPath): Picture[Unit] =
new Picture[Unit] {
def apply(implicit algebra: Algebra): algebra.Drawing[Unit] =
algebra.path(path)
}
def arc(diameter: Double, angle: Angle): Picture[Unit] =
path(doodle.core.OpenPath.arc(0.0, 0.0, diameter, angle))
def pie(diameter: Double, angle: Angle): Picture[Unit] =
path(doodle.core.ClosedPath.pie(0.0, 0.0, diameter, angle))
def regularPolygon(sides: Int, radius: Double): Picture[Unit] =
new Picture[Unit] {
def apply(implicit algebra: Algebra): algebra.Drawing[Unit] =
algebra.regularPolygon(sides, radius)
}
def star(
points: Int,
outerRadius: Double,
innerRadius: Double
): Picture[Unit] =
new Picture[Unit] {
def apply(implicit algebra: Algebra): algebra.Drawing[Unit] =
algebra.star(points, outerRadius, innerRadius)
}
def roundedRectangle(
width: Double,
height: Double,
radius: Double
): Picture[Unit] =
new Picture[Unit] {
def apply(implicit algebra: Algebra): algebra.Drawing[Unit] =
algebra.roundedRectangle(width, height, radius)
}
/** Create an equilateral triangle with the given side length. */
def equilateralTriangle(width: Double): Picture[Unit] =
new Picture[Unit] {
def apply(implicit algebra: Algebra): algebra.Drawing[Unit] =
algebra.equilateralTriangle(width)
}
def interpolatingSpline(points: Seq[Point]): Picture[Unit] =
new Picture[Unit] {
def apply(implicit algebra: Algebra): algebra.Drawing[Unit] =
algebra.interpolatingSpline(points)
}
def catmulRom(points: Seq[Point], tension: Double = 0.5): Picture[Unit] =
new Picture[Unit] {
def apply(implicit algebra: Algebra): algebra.Drawing[Unit] =
algebra.catmulRom(points, tension)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy