Skip to main content

Tool for three-dimensional animations of geometries like FE meshes

Project description

Visualizer-3D

Tool for three-dimensional animations of geometries like FE meshes.

gui

Features

This repository implements a OpenGL-based gui for three-dimensional animations of geometries like FE meshes. It can be used to visualize results, e.g. from transient simulations or to inspect the geometry itself. Moreover, it can be used to export the animations for presentations or publications.

Installation

You can either clone the repository and install the package locally or install it directly from PyPI.

PyPI

pip install visualizer-3d

Local

Clone this repository and install it to your local environment as package using pip:

git clone git@github.com:jkneifl/Visualizer.git
cd Visualizer
pip install -e .

Usage

The base class Visualizer serves as tool for the visualization with its main method animate that can be used to create and export animations of geometries.

from visualizer import Visualizer

coordinates = ...
faces = ...
colors = ...
# create a visualizer object
visualizer = Visualizer()
visualizer.animate(
    coordinates=coordinates,
)

It can animate point clouds, or meshes if the corresponding faces are provided. For a detailed description of the parameters, see the docstring of the animate method.

You can also visualize multiple objects with different colors (specified by rgb values for every coordinate, by a string, or by error_values over an color map) and e.g. as points

random_colors = np.random.rand(*coordinates.shape[0:2])
visualizer.animate([coordinates, coordinates, coordinates],
            faces=[None, faces, faces],
            color=["blue", colors, random_colors],
            shift=True,
            camera_distance=1000,
            )

multiple

In the examples folder, you can find an example script with according data on how to use the Visualizer class.

You can also export the animations as gif or mp4 files. An example is shown below:

arm

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

visualizer_3d-0.3.2.tar.gz (14.3 kB view hashes)

Uploaded Source

Built Distribution

visualizer_3d-0.3.2-py3-none-any.whl (13.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page