You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jiří Cihelka edited this page Jan 2, 2024
·
1 revision
Goal
The goal of the line c coefficient procedure is to find the $c$ coefficient of a line equation in the form of $ax + bx + c = 0$.
Inputs
The inputs for this procedure are:
normalVector: The normal vector of the line.
point: A point on the line.
Outputs
The outputs of this procedure are:
cCoefficient: The $c$ coefficient of the line equation.
Procedure
The procedure for this is as follows:
$\text{let } \vec{n} \text{ be the normal vector}$ $\text{let } P \text{ be the point on the line}$ $\text{let } ax + bx + c = 0 \text{ be the equation of the line}$