add trigonometric sub library, add function to calculate bounding box of polygon

This commit is contained in:
2018-07-27 21:00:30 +02:00
parent 13676deb34
commit d4517aa493
6 changed files with 165 additions and 2 deletions

View File

@@ -18,6 +18,7 @@ aux_source_directory("tree-renderer" RENDERER_SOURCES)
aux_source_directory("gds-parser" PARSER_SOURCES)
aux_source_directory("latex-output" LATEX_SOURCES)
aux_source_directory("cairo-output" CAIRO_SOURCES)
aux_source_directory("trigonometric" TRIG_SOURCES)
set(SOURCE "main.c" "layer-selector.c" "mapping-parser.c" "command-line.c" "main-window.c")
set(SOURCE
@@ -27,6 +28,7 @@ set(SOURCE
${PARSER_SOURCES}
${LATEX_SOURCES}
${CAIRO_SOURCES}
${TRIG_SOURCES}
)
add_compile_options(-Wall)