Bug 1340

Summary: Vecmath uses import java.awt.Color which is poor design
Product: Java3D Reporter: Phil Jordan <p.j.nz>
Component: coreAssignee: Phil Jordan <p.j.nz>
Status: UNCONFIRMED ---    
Severity: normal CC: gouessej
Priority: P4    
Version: tbd   
Hardware: All   
OS: all   
Type: FEATURE SCM Refs:
Workaround: ---

Description Phil Jordan 2016-11-05 05:50:51 CET
vecmath uses 
import java.awt.Color;
in classes Color3/4 f/b  
This ties it to awt but the usage of the import is trivial
public final Color get()
public final void set(Color color) 

This can be  easily replaced


Otherthan this in the entire porject the only import statement are in VecMathI18N 
import java.util.MissingResourceException;
import java.util.ResourceBundle;
which seems reasonable.