Package com.google.common.geometry
Class S1Angle.Builder
- java.lang.Object
-
- com.google.common.geometry.S1Angle.Builder
-
-
Constructor Summary
Constructors Constructor Description Builder()Constructs a new builder initialized toS1Angle.ZERO.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description S1Angle.Builderadd(double radians)Adds radians.S1Angle.Builderadd(S1Angle angle)Adds angle.S1Anglebuild()Returns a newS1Anglecopied from the current state of this builder.
-
-
-
Constructor Detail
-
Builder
public Builder()
Constructs a new builder initialized toS1Angle.ZERO.
-
-
Method Detail
-
add
public S1Angle.Builder add(S1Angle angle)
Adds angle.
-
add
public S1Angle.Builder add(double radians)
Adds radians.
-
-