korlibs
Toggle table of contents
6.1.0-SNAPSHOT
common
Target filter
common
Switch theme
Search in API
Skip to content
korlibs
korlibs-datastructure
/
korlibs.math.geom
/
PointIntList
Point
Int
List
sealed
interface
PointIntList
Inheritors
PointIntArrayList
Members
Members & Extensions
Properties
closed
Link copied to clipboard
abstract
val
closed
:
Boolean
size
Link copied to clipboard
abstract
val
size
:
Int
Functions
contains
Link copied to clipboard
fun
PointIntList
.
contains
(
x
:
Int
,
y
:
Int
)
:
Boolean
fast
For
Each
Link copied to clipboard
inline
fun
PointIntList
.
fastForEach
(
block
:
(
x
:
Int
,
y
:
Int
)
->
Unit
)
fast
For
Each
Reverse
Link copied to clipboard
inline
fun
PointIntList
.
fastForEachReverse
(
block
:
(
x
:
Int
,
y
:
Int
)
->
Unit
)
get
Link copied to clipboard
open
fun
get
(
index
:
Int
)
:
PointInt
get
X
Link copied to clipboard
abstract
fun
getX
(
index
:
Int
)
:
Int
get
Y
Link copied to clipboard
abstract
fun
getY
(
index
:
Int
)
:
Int
to
Points
Link copied to clipboard
fun
PointIntList
.
toPoints
(
)
:
List
<
PointInt
>