├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── rhub.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── RcppExports.R ├── arrange_base.R ├── convert_ss_to_polygons.R ├── extrude_polygon.R ├── find_dangling_nodes.R ├── generate_bevel.R ├── generate_offset_links_nodes.R ├── generate_offset_polygon.R ├── generate_roof.R ├── identify_maxima_nodes.R ├── math-functions.R ├── merge_nodes_within_tolerance.R ├── modify_bevel_with_skeleton.R ├── plot_offset_polygon.R ├── plot_skeleton.R ├── rayvertexcpp.R ├── recalculate_ordered_ids.R ├── remove_node_duplicates.R ├── remove_reversed_links.R ├── run_documentation.R ├── skeletonize.R ├── swap_yz.R ├── timer.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── man ├── arrange_base.Rd ├── change_polygon_bevel.Rd ├── convert_ss_to_polygons.Rd ├── determinant2x2.Rd ├── discretize_and_merge_nodes.Rd ├── dot.Rd ├── extrude_sides.Rd ├── figures │ ├── README-bevelroof-1.png │ ├── README-ca_sf-1.png │ ├── README-ca_sf_bevel-1.png │ ├── README-ca_sf_bevel-2.png │ ├── README-complex_bevel-1.png │ ├── README-functionbevelroof-1.png │ ├── README-multibevelroof-1.png │ ├── README-multioffsets-1.png │ ├── README-offsets-1.png │ ├── README-plot_skeleton-1.png │ ├── README-roof-1.png │ ├── README-simple_poly-1.png │ ├── README-smoothbevelroof-1.png │ ├── README-texas_sf-1.png │ ├── README-unnamed-chunk-10-1.png │ ├── README-unnamed-chunk-11-1.png │ ├── README-unnamed-chunk-3-1.png │ ├── README-unnamed-chunk-4-1.png │ ├── README-unnamed-chunk-5-1.png │ ├── README-unnamed-chunk-6-1.png │ ├── README-unnamed-chunk-7-1.png │ ├── README-unnamed-chunk-8-1.png │ ├── README-unnamed-chunk-9-1.png │ ├── buildingroof.jpg │ ├── raybevel_hex_small.png │ ├── raybevelhex_big.png │ ├── raybevelhex_small.png │ └── raybevelhex_trans2.png ├── find_dangling_nodes.Rd ├── generate_bevel.Rd ├── generate_beveled_polygon.Rd ├── generate_complex_bevel.Rd ├── generate_offset_links_nodes.Rd ├── generate_offset_polygon.Rd ├── generate_roof.Rd ├── get_time.Rd ├── identify_maxima_nodes.Rd ├── init_time.Rd ├── insert_polygon_links_nodes.Rd ├── interpolate_location.Rd ├── make_incremental_nodes.Rd ├── modify_bevel_with_skeleton.Rd ├── plot_offset_polygon.Rd ├── plot_skeleton.Rd ├── print_time.Rd ├── process_sliced_links.Rd ├── recalculate_ordered_ids.Rd ├── remove_node_duplicates.Rd ├── remove_reversed_links.Rd ├── run_docs_raybevel.Rd ├── skeletonize.Rd ├── swap_yz.Rd └── unit_vector.Rd ├── raybevel.Rproj ├── src ├── .gitignore ├── Makevars ├── Makevars.win ├── RcppExports.cpp ├── convert_ss_to_polygons_rcpp.cpp ├── generate_offset_links_nodes_rcpp.cpp ├── math.cpp ├── math.h ├── print.h ├── raydebug.h └── rayskeleton.cpp └── tests ├── testthat.R └── testthat ├── _snaps ├── beveled_polygons.md └── beveled_polygons │ ├── bevel_raw_test129.png │ ├── bevel_raw_test130.png │ ├── bevel_raw_test131.png │ ├── bevel_raw_test132.png │ ├── bevel_raw_test133.png │ ├── bevel_raw_test134.png │ ├── bevel_raw_test135.png │ ├── bevel_raw_test136.png │ ├── bevel_raw_test137.png │ ├── bevel_raw_test138.png │ ├── bevel_raw_test139.png │ ├── bevel_raw_test140.png │ ├── bevel_raw_test141.png │ ├── bevel_raw_test142.png │ ├── bevel_raw_test143.png │ ├── bevel_raw_test144.png │ ├── bevel_raw_test145.png │ ├── bevel_raw_test146.png │ ├── bevel_raw_test147.png │ ├── bevel_raw_test148.png │ ├── bevel_raw_test149.png │ ├── bevel_raw_test150.png │ ├── bevel_raw_test151.png │ ├── bevel_raw_test152.png │ ├── bevel_raw_test153.png │ ├── bevel_raw_test154.png │ ├── bevel_raw_test155.png │ ├── bevel_raw_test156.png │ ├── bevel_raw_test157.png │ ├── bevel_raw_test158.png │ ├── bevel_raw_test159.png │ ├── bevel_raw_test160.png │ ├── bevel_raw_test161.png │ ├── bevel_raw_test162.png │ ├── bevel_raw_test163.png │ ├── bevel_raw_test164.png │ ├── bevel_raw_test165.png │ ├── bevel_raw_test166.png │ ├── bevel_raw_test167.png │ ├── bevel_raw_test168.png │ ├── bevel_raw_test169.png │ ├── bevel_raw_test170.png │ ├── bevel_raw_test171.png │ ├── bevel_raw_test172.png │ ├── bevel_raw_test173.png │ ├── bevel_raw_test174.png │ ├── bevel_raw_test175.png │ ├── bevel_raw_test176.png │ ├── bevel_raw_test177.png │ ├── bevel_raw_test178.png │ ├── bevel_raw_test179.png │ ├── bevel_raw_test180.png │ ├── bevel_raw_test181.png │ ├── bevel_raw_test182.png │ ├── bevel_raw_test183.png │ ├── bevel_raw_test184.png │ ├── bevel_raw_test185.png │ ├── bevel_raw_test186.png │ ├── bevel_raw_test187.png │ ├── bevel_raw_test188.png │ ├── bevel_raw_test189.png │ ├── bevel_raw_test190.png │ ├── bevel_raw_test191.png │ └── bevel_raw_test192.png ├── test-beveled_polygons.R └── test-plot.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/arrange_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/arrange_base.R -------------------------------------------------------------------------------- /R/convert_ss_to_polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/convert_ss_to_polygons.R -------------------------------------------------------------------------------- /R/extrude_polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/extrude_polygon.R -------------------------------------------------------------------------------- /R/find_dangling_nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/find_dangling_nodes.R -------------------------------------------------------------------------------- /R/generate_bevel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/generate_bevel.R -------------------------------------------------------------------------------- /R/generate_offset_links_nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/generate_offset_links_nodes.R -------------------------------------------------------------------------------- /R/generate_offset_polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/generate_offset_polygon.R -------------------------------------------------------------------------------- /R/generate_roof.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/generate_roof.R -------------------------------------------------------------------------------- /R/identify_maxima_nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/identify_maxima_nodes.R -------------------------------------------------------------------------------- /R/math-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/math-functions.R -------------------------------------------------------------------------------- /R/merge_nodes_within_tolerance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/merge_nodes_within_tolerance.R -------------------------------------------------------------------------------- /R/modify_bevel_with_skeleton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/modify_bevel_with_skeleton.R -------------------------------------------------------------------------------- /R/plot_offset_polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/plot_offset_polygon.R -------------------------------------------------------------------------------- /R/plot_skeleton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/plot_skeleton.R -------------------------------------------------------------------------------- /R/rayvertexcpp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/rayvertexcpp.R -------------------------------------------------------------------------------- /R/recalculate_ordered_ids.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/recalculate_ordered_ids.R -------------------------------------------------------------------------------- /R/remove_node_duplicates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/remove_node_duplicates.R -------------------------------------------------------------------------------- /R/remove_reversed_links.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/remove_reversed_links.R -------------------------------------------------------------------------------- /R/run_documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/run_documentation.R -------------------------------------------------------------------------------- /R/skeletonize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/skeletonize.R -------------------------------------------------------------------------------- /R/swap_yz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/swap_yz.R -------------------------------------------------------------------------------- /R/timer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/timer.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /man/arrange_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/arrange_base.Rd -------------------------------------------------------------------------------- /man/change_polygon_bevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/change_polygon_bevel.Rd -------------------------------------------------------------------------------- /man/convert_ss_to_polygons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/convert_ss_to_polygons.Rd -------------------------------------------------------------------------------- /man/determinant2x2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/determinant2x2.Rd -------------------------------------------------------------------------------- /man/discretize_and_merge_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/discretize_and_merge_nodes.Rd -------------------------------------------------------------------------------- /man/dot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/dot.Rd -------------------------------------------------------------------------------- /man/extrude_sides.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/extrude_sides.Rd -------------------------------------------------------------------------------- /man/figures/README-bevelroof-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-bevelroof-1.png -------------------------------------------------------------------------------- /man/figures/README-ca_sf-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-ca_sf-1.png -------------------------------------------------------------------------------- /man/figures/README-ca_sf_bevel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-ca_sf_bevel-1.png -------------------------------------------------------------------------------- /man/figures/README-ca_sf_bevel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-ca_sf_bevel-2.png -------------------------------------------------------------------------------- /man/figures/README-complex_bevel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-complex_bevel-1.png -------------------------------------------------------------------------------- /man/figures/README-functionbevelroof-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-functionbevelroof-1.png -------------------------------------------------------------------------------- /man/figures/README-multibevelroof-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-multibevelroof-1.png -------------------------------------------------------------------------------- /man/figures/README-multioffsets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-multioffsets-1.png -------------------------------------------------------------------------------- /man/figures/README-offsets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-offsets-1.png -------------------------------------------------------------------------------- /man/figures/README-plot_skeleton-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-plot_skeleton-1.png -------------------------------------------------------------------------------- /man/figures/README-roof-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-roof-1.png -------------------------------------------------------------------------------- /man/figures/README-simple_poly-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-simple_poly-1.png -------------------------------------------------------------------------------- /man/figures/README-smoothbevelroof-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-smoothbevelroof-1.png -------------------------------------------------------------------------------- /man/figures/README-texas_sf-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-texas_sf-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /man/figures/buildingroof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/buildingroof.jpg -------------------------------------------------------------------------------- /man/figures/raybevel_hex_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/raybevel_hex_small.png -------------------------------------------------------------------------------- /man/figures/raybevelhex_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/raybevelhex_big.png -------------------------------------------------------------------------------- /man/figures/raybevelhex_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/raybevelhex_small.png -------------------------------------------------------------------------------- /man/figures/raybevelhex_trans2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/figures/raybevelhex_trans2.png -------------------------------------------------------------------------------- /man/find_dangling_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/find_dangling_nodes.Rd -------------------------------------------------------------------------------- /man/generate_bevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/generate_bevel.Rd -------------------------------------------------------------------------------- /man/generate_beveled_polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/generate_beveled_polygon.Rd -------------------------------------------------------------------------------- /man/generate_complex_bevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/generate_complex_bevel.Rd -------------------------------------------------------------------------------- /man/generate_offset_links_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/generate_offset_links_nodes.Rd -------------------------------------------------------------------------------- /man/generate_offset_polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/generate_offset_polygon.Rd -------------------------------------------------------------------------------- /man/generate_roof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/generate_roof.Rd -------------------------------------------------------------------------------- /man/get_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/get_time.Rd -------------------------------------------------------------------------------- /man/identify_maxima_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/identify_maxima_nodes.Rd -------------------------------------------------------------------------------- /man/init_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/init_time.Rd -------------------------------------------------------------------------------- /man/insert_polygon_links_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/insert_polygon_links_nodes.Rd -------------------------------------------------------------------------------- /man/interpolate_location.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/interpolate_location.Rd -------------------------------------------------------------------------------- /man/make_incremental_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/make_incremental_nodes.Rd -------------------------------------------------------------------------------- /man/modify_bevel_with_skeleton.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/modify_bevel_with_skeleton.Rd -------------------------------------------------------------------------------- /man/plot_offset_polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/plot_offset_polygon.Rd -------------------------------------------------------------------------------- /man/plot_skeleton.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/plot_skeleton.Rd -------------------------------------------------------------------------------- /man/print_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/print_time.Rd -------------------------------------------------------------------------------- /man/process_sliced_links.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/process_sliced_links.Rd -------------------------------------------------------------------------------- /man/recalculate_ordered_ids.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/recalculate_ordered_ids.Rd -------------------------------------------------------------------------------- /man/remove_node_duplicates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/remove_node_duplicates.Rd -------------------------------------------------------------------------------- /man/remove_reversed_links.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/remove_reversed_links.Rd -------------------------------------------------------------------------------- /man/run_docs_raybevel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/run_docs_raybevel.Rd -------------------------------------------------------------------------------- /man/skeletonize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/skeletonize.Rd -------------------------------------------------------------------------------- /man/swap_yz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/swap_yz.Rd -------------------------------------------------------------------------------- /man/unit_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/man/unit_vector.Rd -------------------------------------------------------------------------------- /raybevel.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/raybevel.Rproj -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/convert_ss_to_polygons_rcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/convert_ss_to_polygons_rcpp.cpp -------------------------------------------------------------------------------- /src/generate_offset_links_nodes_rcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/generate_offset_links_nodes_rcpp.cpp -------------------------------------------------------------------------------- /src/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/math.cpp -------------------------------------------------------------------------------- /src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/math.h -------------------------------------------------------------------------------- /src/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/print.h -------------------------------------------------------------------------------- /src/raydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/raydebug.h -------------------------------------------------------------------------------- /src/rayskeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/src/rayskeleton.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test129.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test130.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test131.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test132.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test133.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test134.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test135.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test136.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test137.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test138.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test139.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test140.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test141.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test142.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test143.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test144.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test145.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test146.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test147.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test148.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test149.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test150.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test151.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test152.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test153.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test154.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test155.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test156.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test157.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test158.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test159.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test160.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test161.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test162.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test163.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test164.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test165.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test166.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test167.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test168.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test169.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test170.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test171.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test172.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test173.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test174.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test175.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test176.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test177.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test178.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test179.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test180.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test181.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test182.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test183.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test184.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test185.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test186.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test187.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test188.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test189.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test190.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test191.png -------------------------------------------------------------------------------- /tests/testthat/_snaps/beveled_polygons/bevel_raw_test192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/_snaps/beveled_polygons/bevel_raw_test192.png -------------------------------------------------------------------------------- /tests/testthat/test-beveled_polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/test-beveled_polygons.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylermorganwall/raybevel/HEAD/tests/testthat/test-plot.R --------------------------------------------------------------------------------