Skip to content

Commit de90d74

Browse files
committed
Rendering of new bond display types.
1 parent 166f8e8 commit de90d74

File tree

2 files changed

+320
-42
lines changed

2 files changed

+320
-42
lines changed

base/interfaces/src/main/java/org/openscience/cdk/interfaces/IBond.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -135,17 +135,17 @@ enum Stereo {
135135
* Bond display style, controlling how bonds appear in a 2D depiction.
136136
*/
137137
enum Display {
138-
/** Display as a solid line (default). */
138+
/** A solid line (default). */
139139
Solid,
140-
/** Display as a dashed line. */
140+
/** A dashed line. */
141141
Dash,
142-
/** Display as a hashed line. */
142+
/** A hashed line (bold dashed). */
143143
Hash,
144-
/** Display as a bold line. */
144+
/** A bold line. */
145145
Bold,
146-
/** Display as a wavy line. */
146+
/** A wavy line. */
147147
Wavy,
148-
/** Display as a dotted line. */
148+
/** A dotted line. */
149149
Dot,
150150
/**
151151
* Display as a hashed wedge, with the narrow end
@@ -168,12 +168,12 @@ enum Display {
168168
*/
169169
WedgeEnd,
170170
/**
171-
* Display as an arrow (e.g. coordination bond), the arrow points
171+
* Display as an arrow (e.g. co-ordination bond), the arrow points
172172
* to the begin ({@link IBond#getBegin()}) atom.
173173
*/
174174
ArrowBeg,
175175
/**
176-
* Display as an arrow (e.g. coordination bond), the arrow points
176+
* Display as an arrow (e.g. co-ordination bond), the arrow points
177177
* to the end ({@link IBond#getEnd()}) atom.
178178
*/
179179
ArrowEnd

0 commit comments

Comments
 (0)