Howto:Prototyping new Nasal based Canvas Elements
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
- PropertyBasedElement
- sc::Element
- sc::Group
- Canvas.Element baseclass
- Element registration
- NasalWidget
Related
References
|