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
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