Open cyromd opened 6 years ago
===
Code _93 Place _2_hyperbolic_line.cs Process Create a line from (-3,0) to (-9,0) and call it l Clone l and call it r Check l == r
===
Code _94 Place _2_hyperbolic_line.cs Process Create a line from (4,3) to (5,2sqrt(2) and call it l Clone l and call it r Check l == r
===
Code _95 Place _2_hyperbolic_line.cs Process Create a line from (2,5) to (2,2) and call it l Clone l and call it r Check l == r
OK
under this input: line(A,B) A=(-3,0) B=(-9,0) the following output: line(A,B) A=(-3,0) B=(-9,0) is supposed to be seen
under this input: line(A,B) A=(4,3) B=(5,2sqrt(2)) the following output: line(A,B) A=(4,3) B=(5,2sqrt(2)) is supposed to be seen
under this input: line(A,B) A=(2,5) B=(2,2) the following output: line(A,B) A=(2,5) B=(2,2) is supposed to be seen