Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. 13 bool are_parallel(const line &other){
  2. 14 if(this->vert != other.vert)
  3. 15 return false;
  4. 16 if (!vert){
  5. 17 return this->m == other.m;
  6. 18 } else {
  7. 19 return true;
  8. 20 }
  9. 21 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement