the genp module can now run the renderer

This commit is contained in:
Tonton Th
2026-05-07 22:30:30 +02:00
parent 95a8502d0f
commit a079f026f7
4 changed files with 51 additions and 1 deletions

10
testbed.f90 Normal file
View File

@@ -0,0 +1,10 @@
program testbed
use genplotting
implicit none
call genp_init(0, "foo.scratch")
call plot_axes(13.37)
call genp_end(0)
call genp_do_render("foo.scratch", "foo.tga", 512, 512)
end program