3D Graphics for Dummies3D Graphics for Dummies Significant content “borrowed” from Dan Chang @ Nintendo NTD “with permission” Chris Ryan CppCon 2021 github.com/ChrisR98008/CppCon20213 3D Graphics for Dummies4 3D Graphics Dummies5 3D Graphics for Dummies6 3D Graphics for Dummies7 3D Graphics for Dummies8 3D Graphics for Dummies9 3D Graphics for Dummies10 3D Graphics for Dummies11 3D Graphics for Dummies12 3D Graphics Graphics for Dummies13 3D Graphics for Dummies14 3D Graphics for Dummies15 3D Graphics for Dummies Winding / Right Hand Rule Fingers curled in the order of the points, thumb points up Counter clockwise0 码力 | 79 页 | 4.61 MB | 6 月前3
Learn Unity by Creating a 3D Multi-Level Platformer Gamedevelopment with Unity © Zenva Pty Ltd 2018. All rights reserved Learn Unity by Creating a 3D Multi-Level Platformer Game By Pablo Farias Navarro Certified Unity Developer and Founder of Introduction Interested in making games with Unity? In this guide you’ll learn to create a simple a 3D, multi- level platformer game with Unity. We’ll start from the very basics and I’ve done my best Scene basics Start by opening Unity. Click New, enter a name for the project (“Zenva 3D Platformer”), make sure 3D is selected, then click on Create project. This book is brought to you by0 码力 | 60 页 | 2.24 MB | 10 月前3
Apache APISlX from Gateway to Full Traffic Proxy with Istio
Apache APISIX from Gateway to Full Traffic Proxy with Istio Jintao Zhang API7.ai #IstioCon About Me ● Apache APISIX PMC ● Kubernetes Ingress NGINX maintainer ● Microsoft MVP ● zhangjintao@apache.org0 码力 | 15 页 | 1.29 MB | 6 月前0.03
Comprehensive Rust(Persian ) 202412� � � � � � � � � � � � � � � � � � � � ) interactive ( � � � � � : fn main ) ( } println!("Edit me ! " ( ; { You can use Ctrl + Enter to execute the code when focus is in the text box . � � � � � � � � � � Rust � � � � � � � � version number � � � � � : % rustc --version rustc 1.69.0 (84c898d65 2023-04-16 ( % cargo --version cargo 1.69.0 (6e9a83356 2023-04-12 ( � � � � � � � � � � � � � � � � � � � � � � � � � � src/main.rs � � � � � � � � � � � � � � . 21 fn main ) ( } println!("Edit me ! " ( ; { 5 . � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � cargo run � � �0 码力 | 393 页 | 987.97 KB | 10 月前3
Comprehensive Rust(Ukrainian) 202412написання статті останній стабільний випуск Rust має такі версії: % rustc --version rustc 1.69.0 (84c898d65 2023-04-16) % cargo --version cargo 1.69.0 (6e9a83356 2023-04-12) Ви також можете використовувати se) Finished dev [unoptimized + debuginfo] target(s) in 0.24s Running `target/debug/exercise` Edit me! 6. Використовуйте cargo check для швидкої перевірки проекту на наявність помилок і cargo build для C++: fn main() { let input = 'x'; match input { 'q' => println!("Виходжу"), 'a' | 's' | 'w' | 'd' => println!("Пересування"), '0'..='9' => println!("Введення числа"), key if key.is_lowercase() =>0 码力 | 396 页 | 1.08 MB | 10 月前3
Comprehensive Rust(English) 202412need Cargo. The code blocks in this course are fully interactive: 20 fn main() { println!("Edit me!"); } You can use Ctrl + Enter to execute the code when focus is in the text box. Most code samples writing, the latest stable Rust release has these version numbers: % rustc --version rustc 1.69.0 (84c898d65 2023-04-16) % cargo --version cargo 1.69.0 (6e9a83356 2023-04-12) You can use any later version too using the example on the previous page, make src/main.rs look like 21 fn main() { println!("Edit me!"); } 5. Use cargo run to build and run your updated binary: $ cargo run Compiling exercise v0.10 码力 | 382 页 | 1.00 MB | 10 月前3
Comprehensive Rust(简体中文) 202412Cargo:它有助于你更轻松地完成练习。在最后一天,我们要做一个综合的练习,向 你展示如何使用依赖项,因此你需要安装 Cargo。 本课程中的代码块是完全交互式的: fn main() { println!("Edit me!"); } You can use Ctrl + Enter to execute the code when focus is in the text box. 如上所示,大多数代码示 操作。 这应会为你提供一个有效的 rustc 和 cargo。在撰写本文时,最新的 Rust 稳定版是以下的版本号: 18 % rustc --version rustc 1.69.0 (84c898d65 2023-04-16) % cargo --version cargo 1.69.0 (6e9a83356 2023-04-12) 你也可以使用任何更高版本,因为 Rust 保持向后兼容性。 rs 中 的 样 板 代 码 替 换 为 自 己 的 代 码。例 如,使 用 上 一 页 中 的 示 例,将 src/main.rs 改为: fn main() { println!("Edit me!"); } 5. 使用 cargo run 构建并运行更新后的二进制文件: $ cargo run Compiling exercise v0.1.0 (/home/mgeisler/tmp/exercise)0 码力 | 359 页 | 1.33 MB | 10 月前3
Comprehensive Rust(Español) 202412código de forma local con Cargo . . . . . . . . . . . . . . . . . . . . 21 I Día 1: mañana 23 3 Te damos la bienvenida al Día 1 24 4 Hola, Mundo 26 4.1 ¿Qué es Rust? . . . . . . . . . . . . . . . . . . . 39 6.7.1 Solución . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 II Día 1: Tarde 42 7 Te damos la bienvenida 43 8 Tuplas y arrays 44 8.1 Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60 III Día 2: Mañana 63 11 Te damos la bienvenida al día 2 64 12 Correspondencia de Patrones 65 12.1 Correspondencia de Valores .0 码力 | 389 页 | 1.04 MB | 10 月前3
Comprehensive Rust(繁体中文)Cargo,方便您更輕鬆做習題。在最後一天,我們會做規模較大的習題,讓您瞭解如何使用 依附元件,而這需要使用 Cargo。 本課程的程式碼區塊皆完全為互動式: fn main() { println!("Edit me!"); } You can use Ctrl + Enter to execute the code when focus is in the text box. 大部分程式碼範例都可供 手冊中的指示操作。您應會 獲得正常運作的 rustc 和 cargo。截至本文撰寫時間,最新的 Rust 穩定版具有下列版本編號: % rustc --version rustc 1.69.0 (84c898d65 2023-04-16) % cargo --version cargo 1.69.0 (6e9a83356 2023-04-12) 由於 Rust 保有回溯相容性,您也可以使用任何後續版本。 4. 將 src/main.rs 中的樣板程式碼替換為自己的程式碼。以上一頁的範例為例,替換後的 src/main.rs 會類似如下: fn main() { println!("Edit me!"); } 5. 使用 cargo run 建構並執行更新版二進位檔: $ cargo run Compiling exercise v0.1.0 (/home/mgeisler/tmp/exercise)0 码力 | 358 页 | 1.41 MB | 10 月前3
Comprehensive Rust(Português do Brasil) 202412boa sorte no curso! Esperamos que seja tão divertido para você como tem sido para nós! Por favor, dê seu feedback depois para que possamos continuar melhorando o curso. Adoraríamos saber o que funcionou do Cargo. Os blocos de código neste curso são totalmente interativos: fn main() { println!("Edite-me!"); } You can use Ctrl + Enter to execute the code when focus is in the text box. A maioria dos curso foi escrito, as últimas versões estáveis do Rust são: % rustc --version rustc 1.69.0 (84c898d65 2023-04-16) % cargo --version cargo 1.69.0 (6e9a83356 2023-04-12) Você também pode usar qualquer0 码力 | 389 页 | 1.05 MB | 10 月前3
共 497 条
- 1
- 2
- 3
- 4
- 5
- 6
- 50













