Re: [racket-users] Best practice for using .../private files from packages (pict3d)

2017-01-26 Thread WarGrey Gyoudmon Ju
How about merging these primitive geometry APIs into math-lib? On Thu, Jan 26, 2017 at 8:53 PM, Jay McCarthy wrote: > I think that it is quite common for a big library (especially > something really big like pict3d) to create a lot of residual useful > code that could conceivably be their own l

Re: [racket-users] Best practice for using .../private files from packages (pict3d)

2017-01-26 Thread Jay McCarthy
I think that it is quite common for a big library (especially something really big like pict3d) to create a lot of residual useful code that could conceivably be their own libraries. I suggest either [2] or [3] or even a new package for some sort of more primitive notion of geometry. Jay On Thu,

[racket-users] Best practice for using .../private files from packages (pict3d)

2017-01-26 Thread Tim Brown
Folks, I want to access files from a “private” directory of a package -- in this case pict3d -- but I was wondering what the best way to do this is. First a bit of context: I am using the pict3d library for a project which allows me to render and experiment on various 3D models. As an asi