Package raytracer.common.object

Source Code of raytracer.common.object.Cone

package raytracer.common.object;

import raytracer.common.type.Ray;
import raytracer.common.type.Vector;
import raytracer.common.util.Solver;

public class Cone extends RtObject{

  double alpha;
  double primitiveParam; /* = tan(alpha)�*/
 
  @Override
  public double[] primitive(Ray ray) {
    double coef[] = new double [3];
    Vector ori = ray.getOrigin().transformation(this.center, this.rotation);
    Vector dir = ray.getDirection().transformation(null, this.rotation);
    coef[0] = dir.getX() * dir.getX() + dir.getY() * dir.getY() - dir.getZ() * dir.getZ() * this.primitiveParam;
    coef[1] = 2. * (dir.getX() * ori.getX() + dir.getY() * ori.getY() - dir.getZ() * ori.getZ() * this.primitiveParam);
    coef[2] = ori.getX() * ori.getX() + ori.getY() * ori.getY() - ori.getZ() * ori.getZ() * this.primitiveParam;
    return (Solver.deg2(coef));
  }

  @Override
  public Vector normal(Vector inter) {
    Vector result = inter.transformation(this.center, this.rotation);
    result.setZ(-result.getZ() * Math.pow(Math.tan(this.alpha), 2.));
    return (inter.reverseRotation(this.rotation).normal());
  }

}
TOP

Related Classes of raytracer.common.object.Cone

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.