summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2018-09-12 23:45:25 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2018-09-12 23:45:25 +0800
commited0e621b4320df0c469d37932f65d3490dcb77dd (patch)
tree82c9bc95bc0eaaabfd11d019a60678376a6557e3
parent00e716630f7d33c5271408ce8e1cc8eb756f4da0 (diff)
Remove ununsed code
-rw-r--r--svgbob/src/properties.rs52
1 files changed, 0 insertions, 52 deletions
diff --git a/svgbob/src/properties.rs b/svgbob/src/properties.rs
index bc37904..f7ee0b9 100644
--- a/svgbob/src/properties.rs
+++ b/svgbob/src/properties.rs
@@ -188,44 +188,6 @@ impl Properties for char {
is_static: false,
properties: vec![(C, Strong, vec![line(c, w)]), (W, Strong, vec![line(c, w)])],
intensify: vec![
- /*
- // |
- // \
- (
- Y,
- Condition {
- loc: bottom_right(),
- can: IsStrongAll(vec![A, Y]),
- },
- ),
- // |
- // /
- (
- U,
- Condition {
- loc: bottom_left(),
- can: IsStrongAll(vec![U, E]),
- },
- ),
- // /
- // |
- (
- E,
- Condition {
- loc: top_right(),
- can: IsStrongAll(vec![U, E]),
- },
- ),
- // \
- // |
- (
- A,
- Condition {
- loc: top_left(),
- can: IsStrongAll(vec![A, Y]),
- },
- ),
- */
// |-
( O,
Condition{
@@ -242,20 +204,6 @@ impl Properties for char {
),
],
intended_behavior: vec![
- /*
- // |
- // \
- (vec![Y], vec![line(c, m), line(m, y)]),
- // |
- // /
- (vec![U], vec![line(c, m), line(m, u)]),
- // /
- // |
- (vec![E], vec![line(w, m), line(m, e)]),
- // \
- // |
- (vec![A], vec![line(w, m), line(m, a)]),
- */
// |-
(vec![O], vec![line(o, m), line(c,w)]),
// -|