Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 590 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 590 Bytes

SimpleComplex

A very simple implementation of complex numbers in Kotlin.

  • Numbers derive from ComplexBase and there are two concrete subclasses, namely:

    • Polar
    • Cartesian
  • Testing is done using property-based testing with kotest.

  • All code is included in a single file, namely Complex.kt which can just be dropped into a project.

  • Developed to solve equations with higher dimension than quadratics for my implementation of The Ray Tracer Challenge.

Status: In progress.