Re: I've just released Vasaro

2018-12-07 Thread Adam D. Ruppe via Digitalmars-d-announce

On Friday, 7 December 2018 at 08:05:47 UTC, Andrea Fontana wrote:
Simpledisplay works fine for me (and it works better than sdl 
for mouse input) but it requires X11 on macOS if i'm right: 
macOS' users don't like X11 (and this force users to install a 
big dependency)


Ah yes, I sometimes get tempted to add Cocoa support, but (aside 
from one user contribution around 2012ish) I never get further 
than hello world. I do now have a mac... but I hate it, so I have 
no particular personal drive to make stuff work there.


But who knows, maybe eventually I'll get the code going there. 
Indeed though, not right now.


Re: I've just released Vasaro

2018-12-07 Thread Andrea Fontana via Digitalmars-d-announce

On Friday, 7 December 2018 at 15:03:38 UTC, Joakim wrote:

Nice, when does the version with genetic algorithms come out? ;)

https://www.economist.com/technology-quarterly/2015/09/03/wonderful-widgets

JK, of course, demo looks good.


Trust me or not, this is a planned feature.

Andrea


Re: I've just released Vasaro

2018-12-07 Thread Andrea Fontana via Digitalmars-d-announce

On Friday, 7 December 2018 at 13:32:10 UTC, bauss wrote:
This is a very impressive project and I'll follow it just to 
see where it goes.


I have zero to no experience with 3d printing so I can't really 
relate much to it.


Thank you!

If you eventually start with 3d printing you'll notice that there 
are a lot of vases  to print. People loves them (for many 
reasons). However it's not that easy to model a nice (artistic) 
vase: it requires a good knowledge of 3d editors and also if you 
have some pratice with them, you can have a hard time to make 
models printable.


Vasaro let you create nice vases in just a few minutes and it 
makes a lot of users happy. :)




Re: I've just released Vasaro

2018-12-07 Thread Joakim via Digitalmars-d-announce
On Thursday, 6 December 2018 at 20:45:07 UTC, Andrea Fontana 
wrote:

Hi!

I've just released the first version of vasaro.
It's a simple program I wrote to create 3d printable vases.

It's written in D (of course). It uses derelict-gl, 
derelict-sdl and gtkd.


It should work on linux, macOS and Windows.

A special thanks to Adam Ruppe and his SimpleDisplay library I 
used on earlier versions :)


A demo video:
https://www.youtube.com/watch?v=HkYo8WCW9jM

On reddit: 
https://www.reddit.com/r/3Dprinting/comments/a3qykj/ive_just_released_vasaro_the_easytouse_software/


On github:
https://github.com/trikko/vasaro/


Feel free to test it!

Andrea


Nice, when does the version with genetic algorithms come out? ;)

https://www.economist.com/technology-quarterly/2015/09/03/wonderful-widgets

JK, of course, demo looks good.


Re: I've just released Vasaro

2018-12-07 Thread bauss via Digitalmars-d-announce
On Thursday, 6 December 2018 at 20:45:07 UTC, Andrea Fontana 
wrote:

Hi!

I've just released the first version of vasaro.
It's a simple program I wrote to create 3d printable vases.

It's written in D (of course). It uses derelict-gl, 
derelict-sdl and gtkd.


It should work on linux, macOS and Windows.

A special thanks to Adam Ruppe and his SimpleDisplay library I 
used on earlier versions :)


A demo video:
https://www.youtube.com/watch?v=HkYo8WCW9jM

On reddit: 
https://www.reddit.com/r/3Dprinting/comments/a3qykj/ive_just_released_vasaro_the_easytouse_software/


On github:
https://github.com/trikko/vasaro/


Feel free to test it!

Andrea


This is a very impressive project and I'll follow it just to see 
where it goes.


I have zero to no experience with 3d printing so I can't really 
relate much to it.


Re: I've just released Vasaro

2018-12-07 Thread Bastiaan Veelo via Digitalmars-d-announce

On Friday, 7 December 2018 at 07:22:18 UTC, JN wrote:

Looks nice. I'll give it a go when I plug my 3d printer.


Make sure it prints watertight before using the vase for fresh 
flowers :-)




Re: I've just released Vasaro

2018-12-07 Thread Andrea Fontana via Digitalmars-d-announce

On Friday, 7 December 2018 at 01:17:02 UTC, Adam D. Ruppe wrote:
On Thursday, 6 December 2018 at 20:45:07 UTC, Andrea Fontana 
wrote:
A special thanks to Adam Ruppe and his SimpleDisplay library I 
used on earlier versions :)


why you go gtk in the end?


I replaced simpledisplay with sdl. Gtk doesn't support opengl2 so 
I needed a way to display the rendering window.


Simpledisplay works fine for me (and it works better than sdl for 
mouse input) but it requires X11 on macOS if i'm right: macOS' 
users don't like X11 (and this force users to install a big 
dependency)


If it was only for linux+win, simpledisplay would be the choice!

Andrea


Re: I've just released Vasaro

2018-12-07 Thread Andrea Fontana via Digitalmars-d-announce

On Friday, 7 December 2018 at 07:22:18 UTC, JN wrote:

Looks nice. I'll give it a go when I plug my 3d printer.


Waiting for your feedback.


Why use derelict-sdl if you use gtkd already?


Good question. Gtk doesn't support opengl2.
Why do I use OpenGL2?
- I don't know ogl3
- I just need basic 3d features
- It works everywhere (also on VM I use to test it)

Andrea