Re: dlib - d utility library

2012-09-29 Thread Dmitry Olshansky
On 29-Sep-12 20:39, Dmitry Olshansky wrote: On 28-Sep-12 21:47, Peter Alexander wrote: On Friday, 28 September 2012 at 09:43:34 UTC, Timur Gafarov wrote: dlib is a growing collection of native D language libraries serving as a framework for various higher-level projects - such as game engines,

Re: dlib - d utility library

2012-09-29 Thread Dmitry Olshansky
On 28-Sep-12 21:47, Peter Alexander wrote: On Friday, 28 September 2012 at 09:43:34 UTC, Timur Gafarov wrote: dlib is a growing collection of native D language libraries serving as a framework for various higher-level projects - such as game engines, rendering pipelines and multimedia applicatio

Re: dlib - d utility library

2012-09-29 Thread Rory McGuire
On Sep 29, 2012 2:55 PM, "Jacob Carlborg" wrote: > > On 2012-09-28 19:47, Peter Alexander wrote: > >> A note on your Vector implementation. Currently you use the vector >> operators, e.g. >> >> Vector!(T,size) opAddAssign (Vector!(T,size) v) >> body >> { >> arrayof[] += v.a

Re: dlib - d utility library

2012-09-29 Thread Jacob Carlborg
On 2012-09-28 19:47, Peter Alexander wrote: A note on your Vector implementation. Currently you use the vector operators, e.g. Vector!(T,size) opAddAssign (Vector!(T,size) v) body { arrayof[] += v.arrayof[]; return this; } This is fine for large vectors, b

Re: dlib - d utility library

2012-09-29 Thread Timur Gafarov
28.09.2012 20:47, Peter Alexander пишет: On Friday, 28 September 2012 at 09:43:34 UTC, Timur Gafarov wrote: dlib is a growing collection of native D language libraries serving as a framework for various higher-level projects - such as game engines, rendering pipelines and multimedia applications

Re: dlib - d utility library

2012-09-28 Thread Peter Alexander
On Friday, 28 September 2012 at 09:43:34 UTC, Timur Gafarov wrote: dlib is a growing collection of native D language libraries serving as a framework for various higher-level projects - such as game engines, rendering pipelines and multimedia applications. It is written in D2 and has no externa

Re: dlib - d utility library

2012-09-28 Thread Craig Dillabaugh
On Friday, 28 September 2012 at 13:29:05 UTC, Danny Arends wrote: Apart from a description of the project this site seems empty! Is there anywhere a person can download the source code/try this out. If you want to browse it online (without check-out): http://code.google.com/p/dlib/source/br

Re: dlib - d utility library

2012-09-28 Thread Danny Arends
Apart from a description of the project this site seems empty! Is there anywhere a person can download the source code/try this out. If you want to browse it online (without check-out): http://code.google.com/p/dlib/source/browse/ Gr, Danny

Re: dlib - d utility library

2012-09-28 Thread Craig Dillabaugh
On Friday, 28 September 2012 at 09:43:34 UTC, Timur Gafarov wrote: dlib is a growing collection of native D language libraries serving as a framework for various higher-level projects - such as game engines, rendering pipelines and multimedia applications. It is written in D2 and has no externa

dlib - d utility library

2012-09-28 Thread Timur Gafarov
dlib is a growing collection of native D language libraries serving as a framework for various higher-level projects - such as game engines, rendering pipelines and multimedia applications. It is written in D2 and has no external external dependencies aside D's standart library, Phobos. Curren