728x90 SMALL 박스2D2 [ChatGPT][Box2D] Box2D 박스 2D 기본 샘플 코드 Here's an example code for creating a simple Box2D simulation without any other dependencies 다른 의존성 없이 간단한 Box2D 시뮬레이션을 생성하기 위한 예제 코드 #include #include int main() { // Define the gravity vector b2Vec2 gravity(0.0f, -9.81f); // Create a Box2D world with the defined gravity b2World world(gravity); // Create a ground body b2BodyDef groundBodyDef; groundBodyDef.position.Set(0.0f, -10.0f); b2Body* gr.. 2023. 3. 19. [C++][Box2D] 오픈 소스 2차원 물리 시뮬레이터 엔진 "Box2D 박스2D" Box2D 박스2D(2.4.1 버전 (2020)) 는 2006년 에린 카토 (Erin Catto) (현재 블리자드의 물리 프로그래머라고 함) 에 의해 C++로 작성된 자유 오픈 소스 2차원 물리 시뮬레이터 엔진의 하나로, zlib 라이선스(2.4버전부터 MIT 라이선스) 로 배포된다. (참고) 인터넷에서 검색하다가 보니까 Processing 프로세싱(Java 기반)에서 사용할 수 있게 Java로 포팅. JBox2D로 사용가능하다고 나옵니다. 해당 관련 튜토리얼은 Processing 프로세싱 / P5.js 튜토리얼로 유명한 Daniel Shiffman "The Coding Train"에서 확인 가능합니다. ==================================== 구글 검색창에 "Box2D 박스2D.. 2023. 3. 19. 이전 1 다음 728x90 LIST