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

manifold.science.measures.SolidAngle Maven / Gradle / Ivy

There is a newer version: 2024.1.33
Show newest version
/*
 * Copyright (c) 2019 - Manifold Systems LLC
 *
 * 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 manifold.science.measures;

import manifold.science.api.AbstractMeasure;
import manifold.science.util.Rational;

public final class SolidAngle extends AbstractMeasure
{
  public SolidAngle( Rational value, SolidAngleUnit unit, SolidAngleUnit displayUnit )
  {
    super( value, unit, displayUnit );
  }

  public SolidAngle( Rational value, SolidAngleUnit unit )
  {
    this( value, unit, unit );
  }

  @Override
  public SolidAngleUnit getBaseUnit()
  {
    return SolidAngleUnit.BASE;
  }

  @Override
  public SolidAngle make( Rational value, SolidAngleUnit unit, SolidAngleUnit displayUnit )
  {
    return new SolidAngle( value, unit, displayUnit );
  }

  @Override
  public SolidAngle make( Rational value, SolidAngleUnit unit )
  {
    return new SolidAngle( value, unit );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy