コンテンツにスキップ

検索結果

(前の20件 | ) (20 | 50 | 100 | 250 | 500 件) を表示
  • OpenSCADに入っているexampleファイルを開く(File, Examples, e.g. example004.scad)。 もしくは下記のコマンドをOpenSCADにコピー&ペーストする。 そして、F5をタイプするとプレビューが見られる。 プレビュー画面にて以下の三つの操作が可能である。…
    1キロバイト (100 語) - 2015年8月28日 (金) 12:01
  • chooses appears to be an unpredictable, but consistent, function of Steps. For example, when Steps=4, it follows the first pattern, and outputs a total of 4…
    9キロバイト (1,387 語) - 2015年8月28日 (金) 12:02
  • ループのネスト : for (変数1 = <範囲または配列>, 変数2 = <範囲または配列> ) <両方の変数を変化させて実行されるもの> for ループは通常のプログラム同様、ネストできる。ひとつのfor文で両方の繰り返しを実行できる。 Nested loop example for (xpos=[0:3]…
    2キロバイト (4,300 語) - 2015年2月8日 (日) 05:13
  • example.h #ifndef EXAMPLE_H #define EXAMPLE_H void printMessage(void); #endif example.c #include <stdio.h> #include "example.h" void printMessage(void)…
    12キロバイト (1,508 語) - 2024年6月24日 (月) 21:29
  • getElementById('example-id'); element.setAttribute('src', 'new-image.png'); 要素のスタイルを変更するには、次のようにDOMのプロパティを使用します。 const element = document.getElementById('example-id');…
    28キロバイト (3,942 語) - 2024年2月16日 (金) 04:46
  • chooses appears to be an unpredictable, but consistent, function of Steps. For example, when Steps=4, it follows the first pattern, and outputs a total of 4…
    12キロバイト (1,853 語) - 2015年8月28日 (金) 12:02
  • 熱交換器は、流体が接触することなく、一つの流体から別の流体に熱を移動させるために設計された装置です。熱交換器の応用例としては、ラジエーター、空調、発電所などが挙げられます。 熱交換器は主にその流れの配置によって分類されます。熱交換器には基本的に2種類があります: 直列流れ と 交差流れ です。さらに、いわゆる…
    6キロバイト (1,088 語) - 2024年7月31日 (水) 02:03
  • キーワードは明示的に型変数をスコープに持ってくるのに使われる。たとえば、これまで次のように書かれているのは何度も飽きるほど見てきただろう。 Example: 多相関数 map :: (a -> b) -> [a] -> [b] しかし、これらの a と b…
    35キロバイト (3,129 語) - 2018年4月7日 (土) 16:13
  • is only needed for correctly displaying the object in OpenCSG preview mode and has no effect on the polyhedron rendering. Syntax example polyhedron(points…
    8キロバイト (1,248 語) - 2015年8月28日 (金) 12:03
  • ハイパーリンクには主に以下の種類があります。 絶対URL 完全なURLを指定します。外部サイトへのリンクに使用されます。 <a href="https://www.example.com">Example</a> 相対URL 現在の文書を基準にリンク先を指定します。サイト内の他のページへのリンクに使用されます。 <a href="about…
    6キロバイト (706 語) - 2024年6月21日 (金) 06:35
  • "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; keepalive_timeout 65; # サーバーブロック server { listen 80; server_name example.com; location…
    48キロバイト (5,618 語) - 2024年6月30日 (日) 02:06
  • 含むJavaソースファイルで始められます。以下は、パッケージ com.example 内に MyClass クラスを作成する例です。 MyClass.java // MyClass.java package com.example; public class MyClass { // クラスのコード…
    11キロバイト (1,423 語) - 2024年2月1日 (木) 01:58
  • PROGRAM EXAMPLE USE mymodule ! ここでX、Y、A、Bにアクセス可能 END PROGRAM EXAMPLE 動的メモリ割り当て: Fortran 90では、ALLOCATABLEを使った動的メモリ割り当てが可能です。 C FORTRAN 77 PROGRAM EXAMPLE INTEGER…
    23キロバイト (3,274 語) - 2024年1月17日 (水) 23:52
  • Ada (forループの節)
    use Ada.Text_IO; procedure Example is begin for I in 1..5 loop Put_Line("I is " & Integer'Image(I)); end loop; end Example; この例では、1から5までの数値を、Iに順番に代入し…
    45キロバイト (6,473 語) - 2024年1月14日 (日) 22:20
  • <body> <h1>画像の挿入例</h1> <p>以下は画像の挿入例です。</p> <img src="https://www.example.com/example.jpg" alt="美しい風景"> </body> </html> イメージマップは、画像の特定の領域にリンクを設定する方法です…
    23キロバイト (2,465 語) - 2024年7月5日 (金) 19:51
  • (lambda (str) (apply-line-add str delay)) input output)) 最後となりますが、どうしてこの example が CLOS の説明に配置されているのでしょうか?それは、どうして CLOS が優れているかを示すためです。 CLOS…
    8キロバイト (1,407 語) - 2015年8月7日 (金) 10:55
  • 子ノードの和集合を作る。 Usage example: union() { cylinder (h = 4, r=1, center = true, $fn=100); rotate ([90,0,0]) cylinder (h = 4, r=0.9, center = true, $fn=100);…
    2キロバイト (169 語) - 2020年2月20日 (木) 04:01
  • get('https://api.example.com/data') text_data = response.text print(text_data) import requests # JSON形式のレスポンスの処理 response = requests.get('https://api.example.com/data')…
    3キロバイト (291 語) - 2023年7月8日 (土) 11:21
  • range-based for statement. 理由 範囲ベースのfor文の使いやすさを向上させるため。 Effect on original feature Destructors of some temporary objects are invoked later. For example: 元の機能への影響…
    92キロバイト (11,997 語) - 2024年6月10日 (月) 02:12
  • color(name, object, object2 ...); // for example, color('red',sphere()); color(name, a, object, object2 ...); // for example, color('red',0.5, sphere()); color(name…
    48キロバイト (6,377 語) - 2016年10月15日 (土) 08:29
(前の20件 | ) (20 | 50 | 100 | 250 | 500 件) を表示