Re: Cannot extend javafx.scene.transform.Transform

2020-09-16 Thread Kevin Rushforth
Sorry for the delay in responding to this. No, these classes are not meant to be extensible and we do not plan to change this. BaseTransform and Affine3D are an internal non-exported package (i.e., it is an implementation detail), so are not public API. -- Kevin On 9/9/2020 10:18 AM, Jules Y

Cannot extend javafx.scene.transform.Transform

2020-09-09 Thread Jules Yasuna
I would like to extend from javafx.scene.transform.Transform Two methods are preventing this … abstract void apply(Affine3D t); abstract BaseTransform derive(BaseTransform t); I accomplished this in jdk 8 by overriding these two methods … public abstract void impl_apply(final Affine3D trans