Package org.seamcat.model.geometry
Class Inequality2D
- java.lang.Object
-
- org.seamcat.model.geometry.Inequality2D
-
public class Inequality2D extends java.lang.Object
A linear inequality in a 2D plane. Normal form: a*x + b*y + c >= 0. - where c is either -1, 1 or 0 - If c is 0 then b is -1, 1 or 0 - If c and b are 0, then a is 1 or -1
-
-
Constructor Summary
Constructors Constructor Description Inequality2D(double a, double b, double c)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getA()
double
getB()
double
getC()
java.lang.String
toString()
-