abstractEngine.alpha.d.ts 298 B

12345678910
  1. declare module "../abstractEngine" {
  2. interface AbstractEngine {
  3. /**
  4. * Sets the current alpha equation
  5. * @param equation defines the equation to use (one of the Engine.ALPHA_EQUATION_XXX)
  6. */
  7. setAlphaEquation(equation: number): void;
  8. }
  9. }
  10. export {};