PgLine

data class PgLine(val a: Double, val b: Double, val c: Double)

Represents an infinite line in a 2-dimensional space. The linear equation is represented as ax + by + c = 0.

Constructors

Link copied to clipboard
constructor(a: Double, b: Double, c: Double)

Properties

Link copied to clipboard
val a: Double

The 'a' coefficient of the linear equation.

Link copied to clipboard
val b: Double

The 'b' coefficient of the linear equation.

Link copied to clipboard
val c: Double

The 'c' coefficient of the linear equation.