Re: OpenGLNode or NativeSurfaceNode

2015-09-08 Thread Edu García
org> wrote: > Am 08.09.15 um 07:45 schrieb Edu García: > > So, years ago somebody asked on this list if it was possible to have some >> sort of OpenGL or NativeSurface node, to be able to integrate OpenGL or >> DirectX rendering on top of JavaFX (in my case, to embed something

OpenGLNode or NativeSurfaceNode

2015-09-07 Thread Edu García
So, years ago somebody asked on this list if it was possible to have some sort of OpenGL or NativeSurface node, to be able to integrate OpenGL or DirectX rendering on top of JavaFX (in my case, to embed something like LibGDX). Has any work been done on this at all? If it hasn't, are there any

Re: Displaying pixel-perfect images without blur when zooming

2014-08-27 Thread Edu García
Thank you Nico and Jim. Also Jim, that issue only talks about ImageView IIRC. Are you going to implement something similar for shapes? I know it's not the same, but I wanted to show pixelated shapes as well (think about zooming in past 100% in Illustrator with pixel preview enabled). I don't keep

Re: Displaying pixel-perfect images without blur when zooming

2014-08-26 Thread Edu García
I'm curious. Why setSmooth doesn't work? Also, do I really need to create an image in memory just to render something showing the pixels? On Aug 27, 2014 3:32 AM, Nico Krebs | www.mensch-und-maschine.de nicokrebs@googlemail.com wrote: Thanx for that quick response! It is the right

Re: Elliptical gradient

2014-08-14 Thread Edu García
... ...jim On 8/13/14 4:38 PM, Edu García wrote: Hi, Is there a way of create an elliptical gradient? The only way I've found is creating a RadialGradient with proportional set as true, and then apply that to a rectangle of the proportions I want. But obviously, that's not very

Re: Some questions

2014-08-14 Thread Edu García
García arcn...@gmail.com wrote: On Aug 12, 2014 6:59 AM, Jim Graham james.gra...@oracle.com wrote: On 8/9/14 3:19 PM, Edu García wrote: Hi, I have a few questions about JavaFX usage, I hope this is the right place to ask them: 1. I'm creating a Pane with a lot of shapes and resizing

Elliptical gradient

2014-08-13 Thread Edu García
Hi, Is there a way of create an elliptical gradient? The only way I've found is creating a RadialGradient with proportional set as true, and then apply that to a rectangle of the proportions I want. But obviously, that's not very useful if I want to apply it to any shape. If there is no way and

Re: Some questions

2014-08-11 Thread Edu García
On Aug 12, 2014 6:59 AM, Jim Graham james.gra...@oracle.com wrote: On 8/9/14 3:19 PM, Edu García wrote: Hi, I have a few questions about JavaFX usage, I hope this is the right place to ask them: 1. I'm creating a Pane with a lot of shapes and resizing it to 128x128. I'm saving

Some questions

2014-08-09 Thread Edu García
Hi, I have a few questions about JavaFX usage, I hope this is the right place to ask them: 1. I'm creating a Pane with a lot of shapes and resizing it to 128x128. I'm saving it as an image with snapshot() and SwingFXUtils.fromFXImage() (is there any other way?). Why is my saved image 129x129,