Merge to update docs and contributions #504

Merged
altavir merged 199 commits from dev into master 2022-10-03 20:58:00 +03:00
Showing only changes of commit 2358f53cf7 - Show all commits

View File

@ -10,7 +10,7 @@ import kotlin.math.PI
/**
* A circle in 2D space
*/
public class Circle2D(
public data class Circle2D(
public val center: DoubleVector2D,
public val radius: Double
)