Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

over 5 years ago

Language

C++

Compiler

clang 9.0.0

Options
Warnings
Don't Use Boost
C++17
-pedantic-errors
Raw compiler options
-Werror

Author

anonymous

over 5 years ago

$ clang++ prog.cc -Wall -Wextra -std=c++17 -pedantic-errors -Werror
Before reflection:
1) point: (1, 0, 2)
2) line: 
	point: (-2, 1, 5)
	direction: (1, 1, 1)
3) point: (2, 1, 3)
4) plane: 
	point: (8, 5, -2)
	normal: (0, 1, 0)

After reflection:
1) point: (-1, 0, 2)
2) line: 
	point: (2, 1, 5)
	direction: (-1, 1, 1)
3) point: (-2, 1, 3)
4) plane: 
	point: (-8, 5, -2)
	normal: (-0, 1, 0)
Exit Code:
0