2019-04-13 17:16:18 +02:00
|
|
|
// Copyright 2019 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// 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 vector provides functions for vector graphics rendering.
|
|
|
|
//
|
|
|
|
// This package is under experiments and the API might be changed with breaking backward compatibility.
|
|
|
|
package vector
|
|
|
|
|
|
|
|
import (
|
2021-07-16 09:58:20 +02:00
|
|
|
"math"
|
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
2019-04-13 17:16:18 +02:00
|
|
|
)
|
|
|
|
|
2022-04-24 05:14:18 +02:00
|
|
|
// Direction represents clockwise or counterclockwise.
|
2021-07-17 09:41:12 +02:00
|
|
|
type Direction int
|
|
|
|
|
|
|
|
const (
|
|
|
|
Clockwise Direction = iota
|
|
|
|
CounterClockwise
|
|
|
|
)
|
|
|
|
|
2021-07-02 12:26:09 +02:00
|
|
|
type point struct {
|
|
|
|
x float32
|
|
|
|
y float32
|
2019-04-13 17:16:18 +02:00
|
|
|
}
|
|
|
|
|
2019-12-26 08:35:07 +01:00
|
|
|
// Path represents a collection of path segments.
|
2019-04-13 17:16:18 +02:00
|
|
|
type Path struct {
|
2021-07-02 12:26:09 +02:00
|
|
|
segs [][]point
|
|
|
|
cur point
|
2019-04-13 17:16:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// MoveTo skips the current position of the path to the given position (x, y) without adding any strokes.
|
|
|
|
func (p *Path) MoveTo(x, y float32) {
|
2021-07-02 12:26:09 +02:00
|
|
|
p.cur = point{x: x, y: y}
|
|
|
|
p.segs = append(p.segs, []point{p.cur})
|
2019-04-13 17:16:18 +02:00
|
|
|
}
|
|
|
|
|
2019-12-27 03:26:16 +01:00
|
|
|
// LineTo adds a line segument to the path, which starts from the current position and ends to the given position (x, y).
|
2019-04-13 17:16:18 +02:00
|
|
|
//
|
|
|
|
// LineTo updates the current position to (x, y).
|
|
|
|
func (p *Path) LineTo(x, y float32) {
|
2019-04-13 19:34:42 +02:00
|
|
|
if len(p.segs) == 0 {
|
2021-07-16 18:29:41 +02:00
|
|
|
p.segs = append(p.segs, []point{{x: x, y: y}})
|
|
|
|
p.cur = point{x: x, y: y}
|
|
|
|
return
|
2019-04-13 19:34:42 +02:00
|
|
|
}
|
2021-07-16 09:58:20 +02:00
|
|
|
seg := p.segs[len(p.segs)-1]
|
|
|
|
if seg[len(seg)-1].x != x || seg[len(seg)-1].y != y {
|
|
|
|
p.segs[len(p.segs)-1] = append(seg, point{x: x, y: y})
|
|
|
|
}
|
2021-07-02 12:26:09 +02:00
|
|
|
p.cur = point{x: x, y: y}
|
2019-04-13 17:16:18 +02:00
|
|
|
}
|
|
|
|
|
2021-07-05 20:26:52 +02:00
|
|
|
// QuadTo adds a quadratic Bézier curve to the path.
|
2021-07-16 09:58:20 +02:00
|
|
|
// (x1, y1) is the control point, and (x2, y2) is the destination.
|
|
|
|
//
|
|
|
|
// QuadTo updates the current position to (x2, y2).
|
2021-07-14 16:25:59 +02:00
|
|
|
func (p *Path) QuadTo(x1, y1, x2, y2 float32) {
|
|
|
|
p.quadTo(x1, y1, x2, y2, 0)
|
2021-07-05 20:26:52 +02:00
|
|
|
}
|
2021-07-05 18:17:06 +02:00
|
|
|
|
2021-07-05 20:26:52 +02:00
|
|
|
// isPointCloseToSegment detects the distance between a segment (x0, y0)-(x1, y1) and a point (x, y) is less than allow.
|
|
|
|
func isPointCloseToSegment(x, y, x0, y0, x1, y1 float32, allow float32) bool {
|
|
|
|
// Line passing through (x0, y0) and (x1, y1) in the form of ax + by + c = 0
|
|
|
|
a := y1 - y0
|
|
|
|
b := -(x1 - x0)
|
|
|
|
c := (x1-x0)*y0 - (y1-y0)*x0
|
|
|
|
|
|
|
|
// The distance between a line ax+by+c=0 and (x0, y0) is
|
|
|
|
// |ax0 + by0 + c| / √(a² + b²)
|
|
|
|
return allow*allow*(a*a+b*b) > (a*x+b*y+c)*(a*x+b*y+c)
|
2019-12-28 17:47:18 +01:00
|
|
|
}
|
|
|
|
|
2021-07-05 20:26:52 +02:00
|
|
|
func (p *Path) quadTo(x1, y1, x2, y2 float32, level int) {
|
|
|
|
if level > 10 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
x0 := p.cur.x
|
|
|
|
y0 := p.cur.y
|
2021-07-16 09:58:20 +02:00
|
|
|
if isPointCloseToSegment(x1, y1, x0, y0, x2, y2, 0.5) {
|
2021-07-05 20:26:52 +02:00
|
|
|
p.LineTo(x2, y2)
|
|
|
|
return
|
2019-12-28 16:05:03 +01:00
|
|
|
}
|
2021-07-05 20:26:52 +02:00
|
|
|
|
|
|
|
x01 := (x0 + x1) / 2
|
|
|
|
y01 := (y0 + y1) / 2
|
|
|
|
x12 := (x1 + x2) / 2
|
|
|
|
y12 := (y1 + y2) / 2
|
|
|
|
x012 := (x01 + x12) / 2
|
|
|
|
y012 := (y01 + y12) / 2
|
|
|
|
p.quadTo(x01, y01, x012, y012, level+1)
|
|
|
|
p.quadTo(x12, y12, x2, y2, level+1)
|
2019-12-28 16:05:03 +01:00
|
|
|
}
|
|
|
|
|
2020-03-16 15:49:55 +01:00
|
|
|
// CubicTo adds a cubic Bézier curve to the path.
|
2021-07-16 09:58:20 +02:00
|
|
|
// (x1, y1) and (x2, y2) are the control points, and (x3, y3) is the destination.
|
|
|
|
//
|
|
|
|
// CubicTo updates the current position to (x3, y3).
|
2021-07-14 16:25:59 +02:00
|
|
|
func (p *Path) CubicTo(x1, y1, x2, y2, x3, y3 float32) {
|
|
|
|
p.cubicTo(x1, y1, x2, y2, x3, y3, 0)
|
2021-07-05 20:26:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Path) cubicTo(x1, y1, x2, y2, x3, y3 float32, level int) {
|
|
|
|
if level > 10 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
x0 := p.cur.x
|
|
|
|
y0 := p.cur.y
|
2021-07-16 09:58:20 +02:00
|
|
|
if isPointCloseToSegment(x1, y1, x0, y0, x3, y3, 0.5) && isPointCloseToSegment(x2, y2, x0, y0, x3, y3, 0.5) {
|
2021-07-05 20:26:52 +02:00
|
|
|
p.LineTo(x3, y3)
|
|
|
|
return
|
2019-12-28 06:57:50 +01:00
|
|
|
}
|
2021-07-05 20:26:52 +02:00
|
|
|
|
|
|
|
x01 := (x0 + x1) / 2
|
|
|
|
y01 := (y0 + y1) / 2
|
|
|
|
x12 := (x1 + x2) / 2
|
|
|
|
y12 := (y1 + y2) / 2
|
|
|
|
x23 := (x2 + x3) / 2
|
|
|
|
y23 := (y2 + y3) / 2
|
|
|
|
x012 := (x01 + x12) / 2
|
|
|
|
y012 := (y01 + y12) / 2
|
|
|
|
x123 := (x12 + x23) / 2
|
|
|
|
y123 := (y12 + y23) / 2
|
|
|
|
x0123 := (x012 + x123) / 2
|
|
|
|
y0123 := (y012 + y123) / 2
|
|
|
|
p.cubicTo(x01, y01, x012, y012, x0123, y0123, level+1)
|
|
|
|
p.cubicTo(x123, y123, x23, y23, x3, y3, level+1)
|
2019-12-28 06:57:50 +01:00
|
|
|
}
|
|
|
|
|
2021-07-16 09:58:20 +02:00
|
|
|
func normalize(x, y float32) (float32, float32) {
|
|
|
|
len := float32(math.Hypot(float64(x), float64(y)))
|
|
|
|
return x / len, y / len
|
|
|
|
}
|
|
|
|
|
2021-07-17 09:41:12 +02:00
|
|
|
func cross(x0, y0, x1, y1 float32) float32 {
|
|
|
|
return x0*y1 - x1*y0
|
|
|
|
}
|
|
|
|
|
2021-07-16 09:58:20 +02:00
|
|
|
// ArcTo adds an arc curve to the path. (x1, y1) is the control point, and (x2, y2) is the destination.
|
|
|
|
//
|
|
|
|
// ArcTo updates the current position to (x2, y2).
|
|
|
|
func (p *Path) ArcTo(x1, y1, x2, y2, radius float32) {
|
|
|
|
x0 := p.cur.x
|
|
|
|
y0 := p.cur.y
|
|
|
|
dx0 := x0 - x1
|
|
|
|
dy0 := y0 - y1
|
|
|
|
dx1 := x2 - x1
|
|
|
|
dy1 := y2 - y1
|
|
|
|
dx0, dy0 = normalize(dx0, dy0)
|
|
|
|
dx1, dy1 = normalize(dx1, dy1)
|
|
|
|
|
|
|
|
// theta is the angle between two vectors (dx0, dy0) and (dx1, dy1).
|
|
|
|
theta := math.Acos(float64(dx0*dx1 + dy0*dy1))
|
|
|
|
// TODO: When theta is bigger than π/2, the arc should be split into two.
|
|
|
|
|
|
|
|
// dist is the distance between the control point and the arc's begenning and ending points.
|
|
|
|
dist := radius / float32(math.Tan(theta/2))
|
|
|
|
|
|
|
|
// TODO: What if dist is too big?
|
|
|
|
|
|
|
|
// (ax0, ay0) is the start of the arc.
|
|
|
|
ax0 := x1 + dx0*dist
|
|
|
|
ay0 := y1 + dy0*dist
|
|
|
|
|
2021-07-17 09:41:12 +02:00
|
|
|
var cx, cy, a0, a1 float32
|
|
|
|
var dir Direction
|
|
|
|
if cross(dx0, dy0, dx1, dy1) >= 0 {
|
|
|
|
cx = ax0 - dy0*radius
|
|
|
|
cy = ay0 + dx0*radius
|
|
|
|
a0 = float32(math.Atan2(float64(-dx0), float64(dy0)))
|
|
|
|
a1 = float32(math.Atan2(float64(dx1), float64(-dy1)))
|
|
|
|
dir = CounterClockwise
|
|
|
|
} else {
|
|
|
|
cx = ax0 + dy0*radius
|
|
|
|
cy = ay0 - dx0*radius
|
|
|
|
a0 = float32(math.Atan2(float64(dx0), float64(-dy0)))
|
|
|
|
a1 = float32(math.Atan2(float64(-dx1), float64(dy1)))
|
|
|
|
dir = Clockwise
|
|
|
|
}
|
|
|
|
p.Arc(cx, cy, radius, a0, a1, dir)
|
2021-07-16 09:58:20 +02:00
|
|
|
|
|
|
|
p.LineTo(x2, y2)
|
|
|
|
}
|
|
|
|
|
2021-07-16 18:29:41 +02:00
|
|
|
// Arc adds an arc to the path.
|
|
|
|
// (x, y) is the center of the arc.
|
|
|
|
//
|
|
|
|
// Arc updates the current position to the end of the arc.
|
2021-07-17 09:41:12 +02:00
|
|
|
func (p *Path) Arc(x, y, radius, startAngle, endAngle float32, dir Direction) {
|
2021-07-16 18:29:41 +02:00
|
|
|
// Adjust the angles.
|
2021-07-17 09:41:12 +02:00
|
|
|
var da float64
|
|
|
|
if dir == Clockwise {
|
|
|
|
for startAngle > endAngle {
|
|
|
|
endAngle += 2 * math.Pi
|
|
|
|
}
|
|
|
|
da = float64(endAngle - startAngle)
|
|
|
|
} else {
|
|
|
|
for startAngle < endAngle {
|
|
|
|
startAngle += 2 * math.Pi
|
|
|
|
}
|
|
|
|
da = float64(startAngle - endAngle)
|
2021-07-16 18:29:41 +02:00
|
|
|
}
|
2021-07-17 09:41:12 +02:00
|
|
|
|
2021-07-16 18:29:41 +02:00
|
|
|
if da >= 2*math.Pi {
|
|
|
|
da = 2 * math.Pi
|
2021-07-17 09:41:12 +02:00
|
|
|
if dir == Clockwise {
|
|
|
|
endAngle = startAngle + 2*math.Pi
|
|
|
|
} else {
|
|
|
|
startAngle = endAngle + 2*math.Pi
|
|
|
|
}
|
2021-07-16 18:29:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the angle is big, splict this into multiple Arc calls.
|
|
|
|
if da > math.Pi/2 {
|
|
|
|
const delta = math.Pi / 3
|
|
|
|
a := float64(startAngle)
|
2021-07-17 09:41:12 +02:00
|
|
|
if dir == Clockwise {
|
|
|
|
for {
|
|
|
|
p.Arc(x, y, radius, float32(a), float32(math.Min(a+delta, float64(endAngle))), dir)
|
|
|
|
if a+delta >= float64(endAngle) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
a += delta
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for {
|
|
|
|
p.Arc(x, y, radius, float32(a), float32(math.Max(a-delta, float64(endAngle))), dir)
|
|
|
|
if a-delta <= float64(endAngle) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
a -= delta
|
2021-07-16 18:29:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
sin0, cos0 := math.Sincos(float64(startAngle))
|
|
|
|
x0 := x + radius*float32(cos0)
|
|
|
|
y0 := y + radius*float32(sin0)
|
|
|
|
sin1, cos1 := math.Sincos(float64(endAngle))
|
|
|
|
x1 := x + radius*float32(cos1)
|
|
|
|
y1 := y + radius*float32(sin1)
|
|
|
|
|
|
|
|
p.LineTo(x0, y0)
|
|
|
|
|
|
|
|
// Calculate the control points for an approximated Bézier curve.
|
|
|
|
// See https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/graphics/skiasharp/curves/beziers.
|
|
|
|
l := radius * float32(math.Tan(da/4)*4/3)
|
2021-07-17 09:41:12 +02:00
|
|
|
var cx0, cy0, cx1, cy1 float32
|
|
|
|
if dir == Clockwise {
|
|
|
|
cx0 = x0 + l*float32(-sin0)
|
|
|
|
cy0 = y0 + l*float32(cos0)
|
|
|
|
cx1 = x1 + l*float32(sin1)
|
|
|
|
cy1 = y1 + l*float32(-cos1)
|
|
|
|
} else {
|
|
|
|
cx0 = x0 + l*float32(sin0)
|
|
|
|
cy0 = y0 + l*float32(-cos0)
|
|
|
|
cx1 = x1 + l*float32(-sin1)
|
|
|
|
cy1 = y1 + l*float32(cos1)
|
|
|
|
}
|
2021-07-16 18:29:41 +02:00
|
|
|
p.CubicTo(cx0, cy0, cx1, cy1, x1, y1)
|
|
|
|
}
|
|
|
|
|
2021-07-16 10:20:00 +02:00
|
|
|
// AppendVerticesAndIndicesForFilling appends vertices and indices to fill this path and returns them.
|
|
|
|
// AppendVerticesAndIndicesForFilling works in a similar way to the built-in append function.
|
2022-10-10 10:27:57 +02:00
|
|
|
// If the arguments are nils, AppendVerticesAndIndicesForFilling returns new slices.
|
2021-07-02 12:26:09 +02:00
|
|
|
//
|
|
|
|
// The returned vertice's SrcX and SrcY are 0, and ColorR, ColorG, ColorB, and ColorA are 1.
|
|
|
|
//
|
2021-09-25 18:13:00 +02:00
|
|
|
// The returned values are intended to be passed to DrawTriangles or DrawTrianglesShader with EvenOdd fill mode
|
2021-07-02 12:26:09 +02:00
|
|
|
// in order to render a complex polygon like a concave polygon, a polygon with holes, or a self-intersecting polygon.
|
2021-07-16 10:20:00 +02:00
|
|
|
func (p *Path) AppendVerticesAndIndicesForFilling(vertices []ebiten.Vertex, indices []uint16) ([]ebiten.Vertex, []uint16) {
|
2021-07-02 12:26:09 +02:00
|
|
|
// TODO: Add tests.
|
2019-04-13 17:16:18 +02:00
|
|
|
|
2022-10-10 11:07:10 +02:00
|
|
|
base := uint16(len(vertices))
|
2019-12-27 03:26:16 +01:00
|
|
|
for _, seg := range p.segs {
|
2021-07-02 12:26:09 +02:00
|
|
|
if len(seg) < 3 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for i, pt := range seg {
|
2019-12-27 03:26:16 +01:00
|
|
|
vertices = append(vertices, ebiten.Vertex{
|
2021-07-02 12:26:09 +02:00
|
|
|
DstX: pt.x,
|
|
|
|
DstY: pt.y,
|
2019-12-27 03:26:16 +01:00
|
|
|
SrcX: 0,
|
|
|
|
SrcY: 0,
|
2021-07-02 12:26:09 +02:00
|
|
|
ColorR: 1,
|
|
|
|
ColorG: 1,
|
|
|
|
ColorB: 1,
|
|
|
|
ColorA: 1,
|
2019-12-27 03:26:16 +01:00
|
|
|
})
|
2021-07-02 12:26:09 +02:00
|
|
|
if i < 2 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
indices = append(indices, base, base+uint16(i-1), base+uint16(i))
|
2019-12-27 03:26:16 +01:00
|
|
|
}
|
|
|
|
base += uint16(len(seg))
|
2019-04-13 17:16:18 +02:00
|
|
|
}
|
2021-07-02 12:26:09 +02:00
|
|
|
return vertices, indices
|
2019-04-13 17:16:18 +02:00
|
|
|
}
|
2022-10-10 10:27:57 +02:00
|
|
|
|
|
|
|
type StrokeOptions struct {
|
|
|
|
Width float32
|
|
|
|
}
|
|
|
|
|
|
|
|
// AppendVerticesAndIndicesForStroke appends vertices and indices to render a stroke of this path and returns them.
|
|
|
|
// AppendVerticesAndIndicesForStroke works in a similar way to the built-in append function.
|
|
|
|
// If the arguments are nils, AppendVerticesAndIndicesForStroke returns new slices.
|
|
|
|
//
|
|
|
|
// The returned vertice's SrcX and SrcY are 0, and ColorR, ColorG, ColorB, and ColorA are 1.
|
|
|
|
//
|
|
|
|
// The returned values are intended to be passed to DrawTriangles or DrawTrianglesShader with FillAll fill mode, not EvenOdd fill mode.
|
|
|
|
func (p *Path) AppendVerticesAndIndicesForStroke(vertices []ebiten.Vertex, indices []uint16, op *StrokeOptions) ([]ebiten.Vertex, []uint16) {
|
|
|
|
for _, seg := range p.segs {
|
|
|
|
if len(seg) < 2 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var rects [][4]point
|
|
|
|
for i := 0; i < len(seg)-1; i++ {
|
|
|
|
pt := seg[i]
|
|
|
|
if seg[i+1] == pt {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
nextPt := seg[i+1]
|
|
|
|
dx := nextPt.x - pt.x
|
|
|
|
dy := nextPt.y - pt.y
|
|
|
|
dist := float32(math.Sqrt(float64(dx*dx + dy*dy)))
|
|
|
|
extX := (dy) * op.Width / 2 / dist
|
|
|
|
extY := (-dx) * op.Width / 2 / dist
|
|
|
|
|
|
|
|
rects = append(rects, [4]point{
|
|
|
|
{
|
|
|
|
x: pt.x + extX,
|
|
|
|
y: pt.y + extY,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
x: nextPt.x + extX,
|
|
|
|
y: nextPt.y + extY,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
x: pt.x - extX,
|
|
|
|
y: pt.y - extY,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
x: nextPt.x - extX,
|
|
|
|
y: nextPt.y - extY,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, rect := range rects {
|
|
|
|
idx := uint16(len(vertices))
|
|
|
|
for _, pt := range rect {
|
|
|
|
vertices = append(vertices, ebiten.Vertex{
|
|
|
|
DstX: pt.x,
|
|
|
|
DstY: pt.y,
|
|
|
|
SrcX: 0,
|
|
|
|
SrcY: 0,
|
|
|
|
ColorR: 1,
|
|
|
|
ColorG: 1,
|
|
|
|
ColorB: 1,
|
|
|
|
ColorA: 1,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
indices = append(indices, idx, idx+1, idx+2, idx+1, idx+2, idx+3)
|
|
|
|
|
|
|
|
if i >= len(rects)-1 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add line joints.
|
|
|
|
nextRect := rects[i+1]
|
|
|
|
|
|
|
|
// c is the center of the 'end' edge of the current rect (= the second point of the segment).
|
|
|
|
c := point{
|
|
|
|
x: (rect[1].x + rect[3].x) / 2,
|
|
|
|
y: (rect[1].y + rect[3].y) / 2,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that the Y direction and the angle direction are opposite from math's.
|
|
|
|
a0 := float32(math.Atan2(float64(rect[1].y-c.y), float64(rect[1].x-c.x)))
|
|
|
|
a1 := float32(math.Atan2(float64(nextRect[0].y-c.y), float64(nextRect[0].x-c.x)))
|
2022-10-10 17:12:35 +02:00
|
|
|
if a0 == a1 {
|
2022-10-10 10:27:57 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-10-10 17:12:35 +02:00
|
|
|
// Rendering a small pie might cause unexpected holes due to some errors.
|
|
|
|
// Instead, render a full circle.
|
|
|
|
var circle Path
|
|
|
|
circle.MoveTo(rect[1].x, rect[1].y)
|
|
|
|
circle.Arc(c.x, c.y, op.Width/2, 0, 2*math.Pi, Clockwise)
|
|
|
|
vertices, indices = circle.AppendVerticesAndIndicesForFilling(vertices, indices)
|
2022-10-10 10:27:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return vertices, indices
|
|
|
|
}
|