Examples of reverseRotation()


Examples of raytracer.common.type.Vector.reverseRotation()

  @Override
  public Vector normal(Vector inter) {
    Vector tmp = inter.transformation(this.center, this.rotation);
    tmp.setZ(0);
    return (tmp.reverseRotation(this.rotation).normal());
  }

}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.