検索結果
表示
このウィキでページ「B-side」を新規作成しましょう。検索で見つかった他のページも参照してください。
- byte4(x, y, z, side); vertex[i++] = byte4(x, y, z + 1, side); vertex[i++] = byte4(x, y + 1, z, side); vertex[i++] = byte4(x, y + 1, z, side); vertex[i++]…9キロバイト (1,458 語) - 2019年1月13日 (日) 05:58
- left({left}) is not a finite number." assert (isfinite(right)),f"The right({right}) side is not a finite number." assert (left <= right),f"The left({left}) is bigger…10キロバイト (1,624 語) - 2024年12月1日 (日) 03:00
- json の sideEffects フィールドを設定します。 コードを Tree Shaking に対応させるには、適切にモジュールを設計する必要があります。 未使用のコードを明示的に区別するために、モジュールごとに分割します。 math.js export const add = (a, b) =>…6キロバイト (683 語) - 2024年12月24日 (火) 22:43
- Square { var sideLength: Double var area: Double { get { return sideLength * sideLength } set { sideLength = sqrt(newValue) } } init(sideLength: Double)…24キロバイト (3,079 語) - 2023年4月29日 (土) 04:56
- 複数のインクリメント演算子を同時に適用することはできません。 let x = 0; (x++)++; // SyntaxError: Invalid left-hand side expression in postfix operation x++はx += 1、すなわちx = x +…50キロバイト (4,270 語) - 2024年12月29日 (日) 04:17
- to: ", l%b print *, "-> length:", l%area() ! rectangle r%a = 3.0 r%b = 5.0 print * print *, "rectangle ..." call r%print print *, "-> side a:", r%a print…14キロバイト (1,834 語) - 2024年2月6日 (火) 01:35
- たとえば,次のような宣言があったとします。 var x = I(T{}).ab() // xはaとbに検出されない隠れた依存関係がある var _ = sideEffect() // x, a, b には関係ない。 var a = b var b = 42 type I interface { ab() []int } type…10キロバイト (1,519 語) - 2021年9月27日 (月) 22:58
- tk->cmd(t, "button .b -text {Click me} -command {send cmd click}"); entry := tk->cmd(t, "entry .e -width 20"); tk->cmd(t, "pack .b .e -side top"); イベントループの実装:…11キロバイト (1,217 語) - 2025年1月1日 (水) 13:36
- b円になります。」 この場合、 5a=b という式が立てられる。このように等号(=)で2つの式が等しいことを表している物を等式(とうしき)という。また、等号の右側を 右辺 (うへん、英:right-hand side)といい、等号の左側を 左辺(さへん、英:left-hand side)…34キロバイト (5,596 語) - 2024年2月18日 (日) 03:57
- on the middle section, and the electric-circuit analog on the right hand side. As shown in the Helmholtz resonator drawing, the air mass flowing through…15キロバイト (2,368 語) - 2023年4月5日 (水) 07:16
- では入力変数を変更することが許可されます。関数は、すべての入力変数にintent属性を使用し、さらにpureキーワードを使用して、いかなる副作用(side-effects)も持たない純粋な関数に変換できます。 pureキーワードは、実質的に関数がいかなる副作用も持たないようにする追加の制限を課します。…16キロバイト (2,324 語) - 2024年2月11日 (日) 22:21
- R を押してそれを回転させ、ひっくり返します。こうすれば下図のようにひと組のひれができるはずです。 ファイル:Side fin comparision.gif 目のスタートはUVsphereで、オリジナルのボディと同様に、24のセグメントとリングをもっています。 それを上記と同じ方法で複製します。…5キロバイト (904 語) - 2013年8月4日 (日) 14:30
- apex point triangles=[ [0,1,4],[1,2,4],[2,3,4],[3,0,4], // each triangle side [1,0,3],[2,1,3] ] // two triangles for square base ); Ordering of triangle…2キロバイト (4,300 語) - 2015年2月8日 (日) 05:13
- mapM_ :: (a -> m b) -> [a] -> m () mapM_ print :: Show s => [s] -> IO () ShowBox は Show のインスタンスであると定義しただけで、リストの値を出力できる。 テンプレート:Side note 先ほどの疑問に戻ろう。forall…35キロバイト (3,129 語) - 2018年4月7日 (土) 16:13
- apex point triangles: [ [0,1,4],[1,2,4],[2,3,4],[3,0,4], // each triangle side [1,0,3],[2,1,3] ] // two triangles for square base }); さらにtriangles:だけではなくpolygons:…48キロバイト (6,377 語) - 2016年10月15日 (土) 08:29
- ボラタイルオブジェクトへのアクセス、オブジェクトの変更、ファイルの変更、またはこれらの操作を行う関数の呼び出しはすべて副作用( side effect )であり、浮動小数点演算の結果値に影響を与えます。このような浮動小数点の状態をサポートする実装は、それに対する変更を副作用とみなす…98キロバイト (6,618 語) - 2024年3月3日 (日) 11:09
- ボールや他の物体(ここではブロック)との衝突が確認されたら、次にボールがどちらの方向からぶつかったのかを確認します。この確認にはsrc/collision.cのfind_hit_side関数が使われます。この関数では、まずボールの速度と方向を使って、ボールが移動する前の位置まで戻します。ここでボールの位置とブロックの位置を調べる事…24キロバイト (4,042 語) - 2022年11月24日 (木) 16:34
- Shape::Rectangle(width, height) => width * height, Shape::Square(side) => side * side, } } } fn main() { let shapes = vec![ Shape::Circle(5.0), Shape::Rectangle(10…197キロバイト (25,648 語) - 2024年11月30日 (土) 00:20
- radius * radius | Rectangle(width, height) -> width * height | Square(side) -> side * side printfn "Circle Area: %f" (calculateArea circle) printfn "Rectangle…80キロバイト (11,481 語) - 2023年12月6日 (水) 05:50
- 束縛されたら、その値は変更されません。これにより、プログラムの挙動が予測可能で、理解しやすくなります。 副作用の分離 Haskellでは、副作用(Side Effect)が厳密に制御されています。純粋な関数は副作用を持たないため、副作用が発生するコードは特定の箇所で限定され、その他のコードは純粋な関数として扱われます。…31キロバイト (4,543 語) - 2024年2月1日 (木) 05:04