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

commonMain.GeoPolygon.kt Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
package io.fluidsonic.stdlib


data class GeoPolygon(
	val points: List
) {

	init {
		require(points.size >= 3) { "A polygon must have at least 3 points" }

		freeze()
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy