Re: Solid modeling in Guile

2016-09-22 Thread Mark H Weaver
Mark H Weaver writes: > Matthew Keeter writes: > >> I wrote a computer-aided design (CAD) tool that you may find interesting. >> >> It’s a solid modeling tool that uses Guile scripts to define objects (and >> constructive solid geometry + functional representations under the hood). > > Sounds ve

Re: Solid modeling in Guile

2016-09-22 Thread Matthew Keeter
How about ao-cad? That should be pretty unambiguous. -Matt On Sep 22, 2016, at 1:40 PM, Mark H Weaver wrote: > Mark H Weaver writes: > >> Matthew Keeter writes: >> >>> I wrote a computer-aided design (CAD) tool that you may find interesting. >>> >>> It’s a solid modeling tool that uses Gu

Re: Solid modeling in Guile

2016-08-26 Thread Thien-Thi Nguyen
() Alex Kost () Fri, 19 Aug 2016 12:29:46 +0300 Usually modules are defined like this: (define-module (ao bind) #:use-modules (srfi srfi-1) #:use-modules (ice-9 i18n) #:use-modules (system foreign)) Minor correction: ‘s/#:use-modules/#:use-module/g’. -- Thien-Thi Nguyen

Re: Solid modeling in Guile

2016-08-21 Thread Ralf Mattes
One other thing, your script (ao-guile) starts with a hash-bang "/usr/bin/env guile". At least on Debian that might not work since guile might well be a link to guile-1.8 Maybe you need to make the guile binary a configuration option? Cheers, RalfD

Re: Solid modeling in Guile

2016-08-21 Thread Ralf Mattes
On Sat, Aug 20, 2016 at 10:26:53AM -0400, Matthew Keeter wrote: > I added a cmath include and qualified isnan with std::, > try it out now and see if that fixes it (commit 61ce8e1). Yes, it does fix the compilation problem. There seems to be a problem with out-of-tree building (or isn't that suppo

Re: Solid modeling in Guile

2016-08-20 Thread Matthew Keeter
I added a cmath include and qualified isnan with std::, try it out now and see if that fixes it (commit 61ce8e1). -Matt On Aug 20, 2016, at 9:23 AM, Ralf Mattes wrote: > On Thu, Aug 18, 2016 at 05:44:46PM -0400, Matthew Keeter wrote: >> Hi Guile-folks, >> >> I wrote a computer-aided design (CA

Re: Solid modeling in Guile

2016-08-20 Thread Ralf Mattes
On Thu, Aug 18, 2016 at 05:44:46PM -0400, Matthew Keeter wrote: > Hi Guile-folks, > > I wrote a computer-aided design (CAD) tool that you may find interesting. > > It’s a solid modeling tool that uses Guile scripts to define objects (and > constructive solid geometry + functional representations

Re: Solid modeling in Guile

2016-08-19 Thread Thompson, David
Hello Matt, On Thu, Aug 18, 2016 at 5:44 PM, Matthew Keeter wrote: > Hi Guile-folks, > > I wrote a computer-aided design (CAD) tool that you may find interesting. > > It’s a solid modeling tool that uses Guile scripts to define objects (and > constructive solid geometry + functional representatio

Re: Solid modeling in Guile

2016-08-19 Thread Alex Kost
Matthew Keeter (2016-08-19 00:44 +0300) wrote: > Hi Guile-folks, > > I wrote a computer-aided design (CAD) tool that you may find interesting. > > It’s a solid modeling tool that uses Guile scripts to define objects (and > constructive solid geometry + functional representations under the hood). >

Re: Solid modeling in Guile

2016-08-19 Thread Mark H Weaver
Matthew Keeter writes: > I wrote a computer-aided design (CAD) tool that you may find interesting. > > It’s a solid modeling tool that uses Guile scripts to define objects (and > constructive solid geometry + functional representations under the hood). Sounds very interesting! > Project page:

Re: Solid modeling in Guile

2016-08-18 Thread dsmich
Matthew Keeter wrote: > Hi Guile-folks, > > I wrote a computer-aided design (CAD) tool that you may find interesting. > > It’s a solid modeling tool that uses Guile scripts to define objects (and > constructive solid geometry + functional representations under the hood). > > Project page

Solid modeling in Guile

2016-08-18 Thread Matthew Keeter
Hi Guile-folks, I wrote a computer-aided design (CAD) tool that you may find interesting. It’s a solid modeling tool that uses Guile scripts to define objects (and constructive solid geometry + functional representations under the hood). Project page: http://www.mattkeeter.com/projects/ao/ Sour