This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bernhard Blieninger
fc05486403
|
6 years ago | |
---|---|---|
.. | ||
core | 6 years ago | |
dom | 6 years ago | |
lib | 6 years ago | |
metrics | 6 years ago | |
modes | 6 years ago | |
morph | 6 years ago | |
parsers | 6 years ago | |
shapes | 6 years ago | |
.gitmodules | 6 years ago | |
README.md | 6 years ago | |
_config.yml | 6 years ago | |
index.js | 6 years ago | |
index.md | 6 years ago | |
license.txt | 6 years ago | |
package.json | 6 years ago |
README.md
ART
ART is a retained mode vector drawing API designed for multiple output modes. There's also a built-in SVG parser. It uses Node style CommonJS modules.
The first line in your program should select rendering mode by requiring either:
- art/modes/canvas - HTML5 Canvas
- art/modes/svg - SVG for modern browsers and vector tools
- art/modes/vml - VML for Internet Explorer or Office
- art/modes/script - Code generation for ART modules
- art/modes/dom - SVG or VML depending on environment
- art/modes/fast - Canvas, SVG or VML depending on environment
These modules exposes four core rendering classes:
- Surface - Required rectangular rendering area. Container for the rest.
- Group - Container for Shapes, Text or other Groups.
- Shape - Fill and/or stroke an arbitrary vector path.
- Text - Fill and/or stroke text content rendered using native fonts.
There are also helper classes to work with vector paths, 3x3 transformation matrices, colors, morphing, common shapes etc.
#Demos