All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elemental2.core.JsMath Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2018 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package elemental2.core;

import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;

@JsType(isNative = true, name = "Math", namespace = JsPackage.GLOBAL)
public class JsMath {
  @JsOverlay public static final double E = JsMath__Constants.E;
  @JsOverlay public static final double LN10 = JsMath__Constants.LN10;
  @JsOverlay public static final double LN2 = JsMath__Constants.LN2;
  @JsOverlay public static final double LOG10E = JsMath__Constants.LOG10E;
  @JsOverlay public static final double LOG2E = JsMath__Constants.LOG2E;
  @JsOverlay public static final double PI = JsMath__Constants.PI;
  @JsOverlay public static final double SQRT1_2 = JsMath__Constants.SQRT1_2;
  @JsOverlay public static final double SQRT2 = JsMath__Constants.SQRT2;

  public static native double abs(Object x);

  public static native double acos(Object x);

  public static native double acosh(double value);

  public static native double asin(Object x);

  public static native double asinh(double value);

  public static native double atan(Object x);

  public static native double atan2(Object y, Object x);

  public static native double atanh(double value);

  public static native double cbrt(double value);

  public static native int ceil(Object x);

  public static native int clz32(int value);

  public static native double cos(Object x);

  public static native double cosh(double value);

  public static native double exp(Object x);

  public static native double expm1(double value);

  public static native int floor(Object x);

  public static native double fround(double value);

  public static native double hypot(double... var_args);

  public static native double imul(double value1, double value2);

  public static native double log(Object x);

  public static native double log10(double value);

  public static native double log1p(double value);

  public static native double log2(double value);

  public static native double max(Object... var_args);

  public static native double min(Object... var_args);

  public static native double pow(Object x, Object y);

  public static native double random();

  public static native int round(Object x);

  public static native double sign(double value);

  public static native double sin(Object x);

  public static native double sinh(double value);

  public static native double sqrt(Object x);

  public static native double tan(Object x);

  public static native double tanh(double value);

  public static native String toSource();

  public static native int trunc(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy