isTangentTo

infix fun Line<C>.isTangentTo(q: Quadric<C>): Boolean

Checks if this line is tangent to the quadric q.

Receiver

The considered line.

Return

Boolean value of the statement.

Parameters

q

The considered quadric.


infix fun Quadric<C>.isTangentTo(l: Line<C>): Boolean

Checks if this quadric is tangent to the line l.

Receiver

The considered quadric.

Return

Boolean value of the statement.

Parameters

l

The considered line.