Table of contents

Extends Geometry2d.

class Circle2d extends Geometry2d {}

Constructor

Constructs a new instance of the Circle2d class

Parameters

NameDescription

config

Omit<Geometry2dOptions, 'isClosed'> & {
  isFilled: boolean
  radius: number
  x?: number
  y?: number
}

Properties


area

readonly
get area(): number

bounds

readonly
get bounds(): Box

center

readonly
get center(): Vec

config

config: Omit<Geometry2dOptions, 'isClosed'> & {
  isFilled: boolean
  radius: number
  x?: number
  y?: number
}

debugColor

optional
debugColor?: string

ignore

optional
ignore?: boolean

isClosed

isClosed: boolean

isFilled

isFilled: boolean

isLabel

isLabel: boolean

length

readonly
get length(): number

radius

radius: number

vertices

readonly
get vertices(): Vec[]

x

x: number

y

y: number

Methods

distanceToLineSegment()

distanceToLineSegment(A: Vec, B: Vec): number

Parameters

NameDescription

A

B

Returns

number

distanceToPoint()

distanceToPoint(point: Vec, hitInside?: boolean): number

Parameters

NameDescription

point

hitInside

boolean

Returns

number

getArea()

getArea(): number

getBounds()

getBounds(): Box

getLength()

getLength(): number

getSvgPathData()

getSvgPathData(): string

getVertices()

getVertices(): Vec[]

hitTestLineSegment()

hitTestLineSegment(A: Vec, B: Vec, distance?: number): boolean

Parameters

NameDescription

A

B

distance

number

Returns

boolean

hitTestPoint()

hitTestPoint(point: Vec, margin?: number, hitInside?: boolean): boolean

Parameters

NameDescription

point

margin

number

hitInside

boolean

Returns

boolean

isPointInBounds()

isPointInBounds(point: Vec, margin?: number): boolean

Parameters

NameDescription

point

margin

number

Returns

boolean

nearestPoint()

nearestPoint(point: Vec): Vec

Parameters

NameDescription

point

Returns


nearestPointOnLineSegment()

nearestPointOnLineSegment(A: Vec, B: Vec): Vec

Parameters

NameDescription

A

B

Returns


toSimpleSvgPath()

toSimpleSvgPath(): string

Prev
Box
Next
ClickManager