-
Notifications
You must be signed in to change notification settings - Fork 0
/
bffBNF.txt
37 lines (34 loc) · 829 Bytes
/
bffBNF.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Legende:
?: 0 oder 1
(): Gruppierungen
|: grenzt Alternativen zueinander ab
alles innerhalb von Anführungszeichen ist Buchstabe im Beschreibungsalphabet.
bbf:
move-to draw-to's
| bbf bbf
move-to:
"0" wsp double wsp double wsp
draw-to's:
draw-to draw-to's
| draw-to
draw-to:
"1" wsp double wsp double wsp
double:
fractional-constant exponent?
| digit-sequence exponent?
fractional-constant:
digit-sequence? "." digit-sequence
| digit-sequence "."
exponent:
( "e" | "E" ) sign? digit-sequence
sign:
"+" | "-"
digit-sequence:
digit
| digit digit-sequence
digit:
"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
wsp:
" " | "\t" | "\n"
Syntax, teilweise Bezeichnungen und Teile der Sprache übernommen von:
https://www.w3.org/TR/SVG11/paths.html#PathDataBNF