Javascript-форум (https://javascript.ru/forum/)
-   Общие вопросы Javascript (https://javascript.ru/forum/misc/)
-   -   3D рисование (https://javascript.ru/forum/misc/26147-3d-risovanie.html)

Questioner 27.02.2012 23:00

3D рисование
 
document.createElement("canvas").getContext("2d").prototype.$3D = {
    __objects: [],
    point: function (x, y, z) {
        this.x = x;
        this.y = y;
        this.z = z;
        this.x2d = x < (cnv.width / 2) ? x + (z / ((cnv.width + cnv.height) / 2)) : x - (z / ((cnv.width + cnv.height) / 2));
        this.y2d = y < (cnv.height / 2) ? y + (z / ((cnv.width + cnv.height) / 2)) : y - (z / ((cnv.width + cnv.height) / 2));
        this.isPoint = true;
    },
    Point: function (x, y, z, color) {

    }
}

Имеется такой код. Как из функции Point получить канву, на которой рисует пользователь?

nikita.mmf 27.02.2012 23:31

А этот код вообще рабочий?

dmitriymar 27.02.2012 23:58

ну наверно также как и в point- cnv

Questioner 01.03.2012 20:10

Цитата:

Сообщение от nikita.mmf (Сообщение 160328)
А этот код вообще рабочий?

Почти. Сейчас его перечитал, и понял, что не совсем

Questioner 01.03.2012 20:14

Например, там cnv не понятно от куда взято. А можно написать в $3D чё-нить вроде "cnv: this.parentNode.parentNode"?

nikita.mmf 02.03.2012 09:40

Цитата:

Сообщение от Questioner (Сообщение 160817)
Почти. Сейчас его перечитал, и понял, что не совсем

alert(typeof document.createElement("canvas").getContext("2d").prototype);


Часовой пояс GMT +3, время: 23:36.