From 1d88c1095182277004bf47a4d3c747b1dd28201f Mon Sep 17 00:00:00 2001 From: Jaedeok Kim Date: Fri, 8 Jul 2022 13:54:26 +0900 Subject: [PATCH] Remove `physac` from this page --- raylib-architecture.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/raylib-architecture.md b/raylib-architecture.md index d426c77..043c52c 100644 --- a/raylib-architecture.md +++ b/raylib-architecture.md @@ -20,11 +20,10 @@ Beyond the seven main modules that are described above, there is a small collect - [`rgestures`](https://github.com/raysan5/raylib/blob/master/src/rgestures.h): Touch gesture detection and processing (Tap, Swipe, Drag, Pinch). - [`raygui`](https://github.com/raysan5/raygui): Simple IMGUI system with several controls for tools development. - [`easings`](https://github.com/raysan5/raylib/blob/master/src/extras/easings.h): Easing functions for animations (based on [Robert Penner](http://robertpenner.com/easing/) implementation). - - [`physac`](https://github.com/victorfisac/Physac): 2D physics library (collision detection, resolution, dynamics et cetera). Wherever possible, raylib modules were designed to be as decoupled as possible from the other modules. In fact, some modules can be used as standalone libraries, independently of raylib, including the `rlgl` ([example](https://github.com/raysan5/raylib/blob/master/examples/others/rlgl_standalone.c)) and `raudio` ([example](https://github.com/raysan5/raylib/blob/master/examples/others/raudio_standalone.c)) modules. -Most of the secondary modules (`raymath`, `rcamera`, `rgestures`, `raygui`, `easings` and `physac`) can also be used as standalone libraries. They are distributed as configurable, single-file, header-only libraries, allowing them to be independently added to any project. Being header-only means that the file also contains function implementations. That can be extremely useful when you want to drop a library (a bunch of functions) into your codebase to provide specific functionality. However, creating a header-only module is not trivial, as the module must implement very specific functionality, while minimizing external dependencies and global variables. Simply put, it must be completely portable. +Most of the secondary modules (`raymath`, `rcamera`, `rgestures`, `raygui`, `easings`) can also be used as standalone libraries. They are distributed as configurable, single-file, header-only libraries, allowing them to be independently added to any project. Being header-only means that the file also contains function implementations. That can be extremely useful when you want to drop a library (a bunch of functions) into your codebase to provide specific functionality. However, creating a header-only module is not trivial, as the module must implement very specific functionality, while minimizing external dependencies and global variables. Simply put, it must be completely portable. **NOTE**: *The `raymath`, `rcamera` and `rgestures` modules are all compiled with raylib by default.*