Instance Method
インスタンスメソッド
scale(by:)
No overview available.
Availability
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Technology
- Swift
UI
Declaration 宣言
mutating func scale(by rhs: Double
)
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Performing Calculations 計算の実行
Floating-Point Operators for Double
Double用の浮動小数点演算
Perform arithmetic and bitwise operations or compare values.
算術およびビット単位の演算を実行します、または値を比較します。
func addingProduct (Double, Double) -> Double
Returns the result of adding the product of the two given values to this value, computed without intermediate rounding.
2つの与えられた値の積をこの値に加える結果を返します、中間の丸めなしで計算されます。
func addProduct (Double, Double)
Adds the product of the two given values to this value in place, computed without intermediate rounding.
2つの与えられた値の積をこの値にその場で加えます、中間の丸めなしで計算されます。
func squareRoot () -> Double
Returns the square root of the value, rounded to a representable value.
この値の平方根を返します、表現可能な値に丸められます。
func formSquareRoot ()
Replaces this value with its square root, rounded to a representable value.
この値をそれの平方根で置き換えます、表現可能な値に丸められます。
func remainder(dividingBy : Double) -> Double
Returns the remainder of this value divided by the given value.
与えられた値で除算されたこの値の余りを返します。
func formRemainder (dividingBy : Double)
Replaces this value with the remainder of itself divided by the given value.
それ自身を与えられた値で除算した余りでこの値を置き換えます。
func truncatingRemainder (dividingBy : Double) -> Double
Returns the remainder of this value divided by the given value using truncating division.
切り捨て除算を使って与えられた値で除算されたこの値の余りを返します。
func formTruncatingRemainder (dividingBy : Double)
Replaces this value with the remainder of itself divided by the given value using truncating division.
切り捨て除算を使ってそれ自身を与えられた値で除算した余りでこの値を置き換えます。
func negate()
Replaces this value with its additive inverse.
この値をそれの加法の逆元で置き換えます。