public void scale( javax.vecmath.Vector3d axis, ReferenceFrame asSeenBy ) {
if( asSeenBy==null ) {
asSeenBy = this;
}
Matrix44 m = getTransformation( asSeenBy );
m.scale( axis );
setTransformation( m, asSeenBy );
}
public void transform( javax.vecmath.Matrix4d trans, ReferenceFrame asSeenBy ) {
if( asSeenBy==null ) {
asSeenBy = this;