Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
uuuuuufffunction matrix3D () { this.element = new Array(); this.createBase(); this.vCount = 0;}// Base creation// -------------matrix3D.prototype.createBase = function() { this.base = new Array(); this.base[1] = new Array(1,0,0); this.base[2] = new Array(0,1,0); this.base[3] = new Array(0,0,1);}// Adding a vector// ---------------matrix3D.prototype.addVector = function (x,y,z) { this.vCount++; this.element[this.vCount] = new Array(); this.element[this.vCount][1] = x; this.element[this.vCount][2] = y; this.element[this.vCount][3] = z;}// Deleting a vector// ---------------matrix3D.prototype.delVector = function (index,count) { if (!count) count = 1; this.element.splice(index, count); this.vCount -= count;}// Getting an element's value// --------------------------matrix3D.prototype.get = function(row, column) { return (this.element[row][column]);}// Setting an element's value// --------------------------matrix3D.prototype.set = function(row, column, arg) { this.element[row][column] = arg;}
Schon klarIch hab mir das so vorgestellt das mann denn slider da wegnimmt und das ausraedsche nimmt