-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef3f09b
commit 6815df1
Showing
5 changed files
with
231 additions
and
87 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
""" | ||
Barion | ||
Okt 2016 Xaratustrah | ||
""" | ||
|
||
|
||
class PlotCell: | ||
def __init__(self): | ||
self.line_color = 'black' | ||
self.bg_color = 'white' | ||
self.size_px = 20 | ||
self.arrow_to = False | ||
self.arrow_from = False | ||
self.arrow_color = 'black' | ||
self.arrow_line_thickness = 2 | ||
|
||
def create_plot(self): | ||
pass | ||
|
||
def bulk_pot(self): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters