Skip to content

Commit

Permalink
Missing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gilleain authored and egonw committed Aug 1, 2010
1 parent d96f596 commit 9a55100
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/main/org/openscience/cdk/tools/StereoTool.java
Expand Up @@ -396,10 +396,10 @@ public static double signedDistanceToPlane(
* <p>NOTE : the returned normal is normalized; that is, it has been
* divided by its length.</p>
*
* @param ptA
* @param ptB
* @param ptC
* @return
* @param ptA the 'middle' point
* @param ptB one of the end points
* @param ptC one of the end points
* @return the vector at right angles to AB and AC
*/
public static Vector3d getNormal(Point3d ptA, Point3d ptB, Point3d ptC) {
Vector3d vectorAB = new Vector3d();
Expand Down
2 changes: 1 addition & 1 deletion src/test/org/openscience/cdk/tools/StereoToolTest.java
Expand Up @@ -99,7 +99,7 @@ public void tetrahedralPlusAtomsAboveXYClockwiseTest() {
IAtom positiveApex = new Atom("C", new Point3d(0.5, 0.5, 2));
TetrahedralSign tetSign =
StereoTool.getHandedness(baseC, baseB, baseA, positiveApex);
Assert.assertEquals(TetrahedralSign.PLUS, tetSign);
Assert.assertEquals(TetrahedralSign.MINUS, tetSign);
}

@Test
Expand Down

0 comments on commit 9a55100

Please sign in to comment.