This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/artist/shapes/ellipse.go

137 lines
3.9 KiB
Go
Raw Normal View History

2023-02-24 01:55:19 +00:00
package shapes
import "math"
import "image"
2023-02-02 06:48:16 +00:00
import "git.tebibyte.media/sashakoshka/tomo/canvas"
// FillEllipse draws the content of one canvas onto another, clipped by an
// ellipse stretched to the bounds of the source canvas. The offset point
// defines where the origin point of the source canvas is positioned in relation
// to the origin point of the destination canvas. To prevent the entire source
// canvas's bounds from being used, it must be cut with canvas.Cut().
func FillEllipse (
2023-02-02 06:48:16 +00:00
destination canvas.Canvas,
source canvas.Canvas,
offset image.Point,
) (
updatedRegion image.Rectangle,
) {
dstData, dstStride := destination.Buffer()
srcData, srcStride := source.Buffer()
bounds := source.Bounds()
realWidth, realHeight := bounds.Dx(), bounds.Dy()
2023-01-21 02:59:48 +00:00
bounds = bounds.Intersect(destination.Bounds()).Canon()
if bounds.Empty() { return }
updatedRegion = bounds
2023-01-21 02:59:48 +00:00
width, height := bounds.Dx(), bounds.Dy()
for y := 0; y < height; y ++ {
for x := 0; x < width; x ++ {
2023-01-21 03:13:14 +00:00
xf := (float64(x) + 0.5) / float64(realWidth) - 0.5
yf := (float64(y) + 0.5) / float64(realHeight) - 0.5
if math.Sqrt(xf * xf + yf * yf) <= 0.5 {
dstData[x + offset.X + (y + offset.Y) * dstStride] =
srcData[x + y * srcStride]
}
}}
return
}
// StrokeRectangle is similar to FillEllipse, but it draws an elliptical inset
// outline of the source canvas onto the destination canvas. To prevent the
// entire source canvas's bounds from being used, it must be cut with
// canvas.Cut().
2023-01-21 02:59:48 +00:00
func StrokeEllipse (
2023-02-02 06:48:16 +00:00
destination canvas.Canvas,
source canvas.Canvas,
offset image.Point,
weight int,
2023-01-21 02:59:48 +00:00
) {
if weight < 1 { return }
dstData, dstStride := destination.Buffer()
srcData, srcStride := source.Buffer()
bounds := source.Bounds().Inset(weight - 1)
2023-01-21 02:59:48 +00:00
2023-02-24 07:51:24 +00:00
context := plottingContext {
dstData: dstData,
dstStride: dstStride,
srcData: srcData,
srcStride: srcStride,
weight: weight,
offset: offset,
bounds: bounds.Intersect(destination.Bounds()),
2023-01-21 02:59:48 +00:00
}
2023-01-21 03:13:14 +00:00
bounds.Max.X -= 1
bounds.Max.Y -= 1
radii := image.Pt (
bounds.Dx() / 2,
bounds.Dy() / 2)
center := bounds.Min.Add(radii)
2023-01-21 02:59:48 +00:00
x := float64(0)
y := float64(radii.Y)
// region 1 decision parameter
decision1 :=
float64(radii.Y * radii.Y) -
float64(radii.X * radii.X * radii.Y) +
(0.25 * float64(radii.X) * float64(radii.X))
decisionX := float64(2 * radii.Y * radii.Y * int(x))
decisionY := float64(2 * radii.X * radii.X * int(y))
// draw region 1
for decisionX < decisionY {
2023-02-24 07:51:24 +00:00
context.plotSource(image.Pt( int(x) + center.X, int(y) + center.Y))
context.plotSource(image.Pt(-int(x) + center.X, int(y) + center.Y))
context.plotSource(image.Pt( int(x) + center.X, -int(y) + center.Y))
context.plotSource(image.Pt(-int(x) + center.X, -int(y) + center.Y))
2023-01-21 02:59:48 +00:00
if (decision1 < 0) {
x ++
decisionX += float64(2 * radii.Y * radii.Y)
decision1 += decisionX + float64(radii.Y * radii.Y)
} else {
x ++
y --
decisionX += float64(2 * radii.Y * radii.Y)
decisionY -= float64(2 * radii.X * radii.X)
decision1 +=
decisionX - decisionY +
float64(radii.Y * radii.Y)
}
}
// region 2 decision parameter
decision2 :=
float64(radii.Y * radii.Y) * (x + 0.5) * (x + 0.5) +
float64(radii.X * radii.X) * (y - 1) * (y - 1) -
float64(radii.X * radii.X * radii.Y * radii.Y)
// draw region 2
for y >= 0 {
2023-02-24 07:51:24 +00:00
context.plotSource(image.Pt( int(x) + center.X, int(y) + center.Y))
context.plotSource(image.Pt(-int(x) + center.X, int(y) + center.Y))
context.plotSource(image.Pt( int(x) + center.X, -int(y) + center.Y))
context.plotSource(image.Pt(-int(x) + center.X, -int(y) + center.Y))
2023-01-21 02:59:48 +00:00
if decision2 > 0 {
y --
decisionY -= float64(2 * radii.X * radii.X)
decision2 += float64(radii.X * radii.X) - decisionY
} else {
y --
x ++
decisionX += float64(2 * radii.Y * radii.Y)
decisionY -= float64(2 * radii.X * radii.X)
decision2 +=
decisionX - decisionY +
float64(radii.X * radii.X)
}
}
}