Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

HTML5에서 3D 구를 그리는 방법은 무엇입니까?


3D 구를 만들려면 HTML5 캔버스를 사용하세요. 코드에서 다음 기능을 사용할 수 있습니다.

function display(r) {
   this.point = new Array();
   this.color = "blue)"
   this.r = (typeof(r) == "undefined") ? 20.0 : r;
   this.r = (typeof(r) != "number") ? 20.0 : r;
   this.vertexes = 0;

   for(alpha = 0; alpha <= 6.28; alpha += 0.17) {
      p = this.point[this. vertexes] = new Point3D();
      p.x = Math.cos(alpha) * this.r;
      p.y = 0;
      p.z = Math.sin(alpha) * this.r;
      this.vertexes ++;
   }
}