All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.bselzer.ktx.geometry.dimension.bi.polygon.Polygon.kt Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.bselzer.ktx.geometry.dimension.bi.polygon

import com.bselzer.ktx.geometry.dimension.bi.position.Point2D

abstract class Polygon(
    /**
     * The points forming the shape.
     */
    val points: List
) {
    override fun toString(): String = points.joinToString()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy