-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow markers to have no diameters (#233)
Markers may have only `(X Y Z)` specified instead of the more common `(X Y Z D)`. In this case, diameters are set to 0. Also: Strings in the middle of the list of points are now skipped. ℹ️ The example file added in this commit is from C280999A-I4.asc The following illustrates both use cases: ```lisp ( (Color Red) ( -0.97 -141.17 84.77) "<--4 boutons on a PC soma" ) ; End of text ```
- Loading branch information
Benoit Coste
authored
Feb 11, 2021
1 parent
8fdd355
commit 9a85ef1
Showing
4 changed files
with
37 additions
and
8 deletions.
There are no files selected for viewing
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
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,12 @@ | ||
; The following annotation has been found in C280999A-I4.asc | ||
; It is a top-level annotation with a quote inside | ||
( (Color Red) | ||
( -0.97 -141.17 84.77) | ||
"<--4 boutons on a PC soma" | ||
) ; End of text | ||
|
||
("CellBody" | ||
(Color Red) | ||
(CellBody) | ||
(0 0 0 2) | ||
) |
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