woden

Description

World Dynamic Engine - A 3D graphics engine for Pharo

Details

Source
GitHub
Dialect
pharo (65% confidence)
License
MIT
Stars
69
Forks
10
Created
Nov. 10, 2015
Updated
May 19, 2025
Topics
3d-engine 3d-graphics pharo smalltalk

Categories

UI / Graphics Games

README excerpt

# WODEN Engine - World Dynamic Engine
### A 3D graphics engine for Pharo

## Requirements

### 3D Graphics Card
Woden communicates with the 3D graphics via the abstract-gpu abstraction layer.

#### Windows and Linux

Woden on Windows requires a modern graphics card with support for Vulkan.

#### OS X

Woden on OS X requires a Mac with support for the Metal API.

## Loading Woden

Woden can be loaded in a 64 bits Pharo 9 image by running the following script in a playground:

```smalltalk
Metacello new
   baseline: 'WodenEngine';
   repository: 'github://woden-engine/woden';
   load
```

## Woden samples

For checking the Woden samples, you should check the class side of WDASceneExamples
for some examples, or you can just run the following script for blue window:

```smalltalk
model := WDAModel new.
model openWith: (WDASolidColorViewSample new color: Color blue)
```

## Bug reporting

For bug reporting, use the GitHub issue tracker at the Woden repository https://github.com/woden-engine/woden
← Back to results