Howto:Prototyping new Nasal based Canvas Elements

From FlightGear wiki
Revision as of 15:15, 13 August 2019 by Johan G (talk | contribs) (cat: Canvas Elements)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
This article is a stub. You can help the wiki by expanding it.

Idea

var myNewCanvasElement = {
new: func() {
var m = { parents:[Canvas.Element] };
return m;
},
del: func() {
},

};

Background

Motivation

See also

Related

References