diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2019-02-25 16:33:41 -0500 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2019-02-25 16:33:41 -0500 |
commit | 28222390e03ce2a9023964dbf6c9cb3c5d3b2694 (patch) | |
tree | 8506a0ab8fe60100723c77571415674783946cac | |
parent | 89a646859e132cc21c6597b31cb39dd628434dfc (diff) |
Adds battery element
-rw-r--r-- | circuit.pic | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/circuit.pic b/circuit.pic index 48ceb4c..af4c092 100644 --- a/circuit.pic +++ b/circuit.pic @@ -8,8 +8,12 @@ text_up = 0.175 text_down = 0.2 +padding = 0.04 wire_wid = .25 +define begin {line right padding} +define end_ {line right padding} + define wire {line $1 wire_wid} define current { @@ -36,3 +40,19 @@ define point { "$4 " rjust at last circle .e move to last circle } + +define batt { +#LEFT +begin + move down .1; line up .2; move down .1 + move right .025 +#TEXT + move down text_down "$1"; move up text_down; + move up text_up "$2"; move down text_up; +#RIGHT + move right .025 + move down .03333; + line up .066666; move down 0.03333 ; +end_ +} +batt_len = .05 + padding*2 |