Testing out the Java2DRenderer (in the org.openscience.cdk.renderer package), I tried to make this:
Using this smile:
This is because of multiple ring closures, of course. I should have used:
Using this smile:
c1(c2ccc(c8ccccc8)cc2)except that I didn't have the % signs, so it came out as:
c(c3ccc(c9ccccc9)cc3)
c(c4ccc(c%10ccccc%10)cc4)
c(c5ccc(c%11ccccc%11)cc5)
c(c6ccc(c%12ccccc%12)cc6)
c1(c7ccc(c%13ccccc%13)cc7)
This is because of multiple ring closures, of course. I should have used:
C1CCC(CC1)which is much clearer. Oh yes.
C2CCC(CC2)
C13C(C3CCC(CC3)C4CCCCC4)
C(C5CCC(CC5)C6CCCCC6)
C(C7CCC(CC7)C8CCCCC8)
C(C9CCC(CC9)C10CCCCC10)
C13(C11CCC(CC11)C12CCCCC12)
Comments