Package com.google.common.geometry
Class S1Angle.Builder
- java.lang.Object
-
- com.google.common.geometry.S1Angle.Builder
-
-
Field Summary
Fields Modifier and Type Field Description private double
radians
-
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.Builder
add(double radians)
Adds radians.S1Angle.Builder
add(S1Angle angle)
Adds angle.S1Angle
build()
Returns a newS1Angle
copied 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.
-
-