Package vash.operation

Examples of vash.operation.Sine


  @Test public void testExp()    {this.runTest("3400", new Exponentiate(XCoord(), YCoord()));}
  @Test public void testMod()    {this.runTest("3500", new Modulus(XCoord(), YCoord()));}
  @Test public void testMul()    {this.runTest("3600", new Multiply(XCoord(), YCoord()));}

  // sin
  @Test public void testSin1x0()    {this.runTest("4000", new Sine(1, 0, XCoord()));}
View Full Code Here


  @Test public void testMod()    {this.runTest("3500", new Modulus(XCoord(), YCoord()));}
  @Test public void testMul()    {this.runTest("3600", new Multiply(XCoord(), YCoord()));}

  // sin
  @Test public void testSin1x0()    {this.runTest("4000", new Sine(1, 0, XCoord()));}
  @Test public void testSin0x0()    {this.runTest("4001", new Sine(0, 0, XCoord()));}
View Full Code Here

  @Test public void testMul()    {this.runTest("3600", new Multiply(XCoord(), YCoord()));}

  // sin
  @Test public void testSin1x0()    {this.runTest("4000", new Sine(1, 0, XCoord()));}
  @Test public void testSin0x0()    {this.runTest("4001", new Sine(0, 0, XCoord()));}
  @Test public void testSinN1x0()    {this.runTest("4002", new Sine(-1, 0, XCoord()));}
View Full Code Here

  // sin
  @Test public void testSin1x0()    {this.runTest("4000", new Sine(1, 0, XCoord()));}
  @Test public void testSin0x0()    {this.runTest("4001", new Sine(0, 0, XCoord()));}
  @Test public void testSinN1x0()    {this.runTest("4002", new Sine(-1, 0, XCoord()));}
  @Test public void testSinPIx0()    {this.runTest("4003", new Sine(3.14, 0, XCoord()));}
View Full Code Here

  // sin
  @Test public void testSin1x0()    {this.runTest("4000", new Sine(1, 0, XCoord()));}
  @Test public void testSin0x0()    {this.runTest("4001", new Sine(0, 0, XCoord()));}
  @Test public void testSinN1x0()    {this.runTest("4002", new Sine(-1, 0, XCoord()));}
  @Test public void testSinPIx0()    {this.runTest("4003", new Sine(3.14, 0, XCoord()));}
  @Test public void testSinPIxPI2()  {this.runTest("4004", new Sine(3.14, 1.57, XCoord()));}
View Full Code Here

TOP

Related Classes of vash.operation.Sine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.