All Projects → redcamel → Redgpu

redcamel / Redgpu

Licence: mit
RedGPU - Javascript WebGPU Engine

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Redgpu

Navmeshscene
based on recastnavigation, a 3d scene
Stars: ✭ 53 (-24.29%)
Mutual labels:  3d
Viewpagertransformer
Viewpager动画,包括渐变,旋转,缩放,3D,立方体等多种酷炫效果动画,实现原理是自定义ViewpagerTransformer,当然你也可以自定义多种动画
Stars: ✭ 62 (-11.43%)
Mutual labels:  3d
Zdog
Flat, round, designer-friendly pseudo-3D engine for canvas & SVG
Stars: ✭ 8,904 (+12620%)
Mutual labels:  3d
Spherelayout
a layout which supports 3d rotate and enable its childview has z-depth for android
Stars: ✭ 55 (-21.43%)
Mutual labels:  3d
Dgel
A WebGPU engine.
Stars: ✭ 60 (-14.29%)
Mutual labels:  3d
Loam velodyne
Laser Odometry and Mapping (Loam) is a realtime method for state estimation and mapping using a 3D lidar.
Stars: ✭ 1,135 (+1521.43%)
Mutual labels:  3d
Sophus
C++ implementation of Lie Groups using Eigen.
Stars: ✭ 1,048 (+1397.14%)
Mutual labels:  3d
Toronto 3d
A Large-scale Mobile LiDAR Dataset for Semantic Segmentation of Urban Roadways
Stars: ✭ 69 (-1.43%)
Mutual labels:  3d
Aframe Forcegraph Component
Force-directed graph component for A-Frame
Stars: ✭ 60 (-14.29%)
Mutual labels:  3d
3d Game Shaders For Beginners
🎮 A step-by-step guide to implementing SSAO, depth of field, lighting, normal mapping, and more for your 3D game.
Stars: ✭ 11,698 (+16611.43%)
Mutual labels:  3d
Ueviewer
Viewer and exporter for Unreal Engine 1-4 assets (UE Viewer).
Stars: ✭ 1,083 (+1447.14%)
Mutual labels:  3d
Explorer
WorldWindExplorer: A 3D virtual globe geo-browser app framework based on WorldWindJS, Bootstrap and KnockoutJS. Includes 3D globe and 2D map projections, imagery, terrain, markers, plus solar and celestial data.
Stars: ✭ 59 (-15.71%)
Mutual labels:  3d
Vimeo Depth Player
A WebVR volumetric video renderer that uses color-depth based videos hosted on Vimeo.
Stars: ✭ 65 (-7.14%)
Mutual labels:  3d
Psychosynth
GNU Psychosynth is a a synthesizer and modular audio framework inspired by the ideas of the Reactable.
Stars: ✭ 53 (-24.29%)
Mutual labels:  3d
Frustum Pointnets
Frustum PointNets for 3D Object Detection from RGB-D Data
Stars: ✭ 1,154 (+1548.57%)
Mutual labels:  3d
Helix Toolkit
Helix Toolkit is a collection of 3D components for .NET.
Stars: ✭ 1,050 (+1400%)
Mutual labels:  3d
Vulkust
An engine for Vulkan in Rust, tries to implement modern graphic features. (suspended for now)
Stars: ✭ 64 (-8.57%)
Mutual labels:  3d
Unity Plane Mesh Splitter
Unity Plane Mesh Splitter
Stars: ✭ 71 (+1.43%)
Mutual labels:  3d
Vanta
Animated 3D backgrounds for your website
Stars: ✭ 1,162 (+1560%)
Mutual labels:  3d
Pymesh
Geometry Processing Library for Python
Stars: ✭ 1,135 (+1521.43%)
Mutual labels:  3d

RedGPU

RedGPU - Javascript webGPU Engine

  • run in Chrome Canary() behind the flag --enable-unsafe-webgpu.
  • run in Edge Canary() behind the flag --enable-unsafe-webgpu.

Usage

html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>RedGPU Example - HelloWorld</title>
    <link type="text/css" rel="stylesheet" href="../css.css"/>
    <script type="module" src="your host.js"></script>
</head>
<body></body>
</html>

module

"use strict"
import RedGPU from "dist/RedGPU.min.mjs";

const cvs = document.createElement('canvas');
document.body.appendChild(cvs);
new RedGPU.RedGPUContext(
	cvs,
	function () {
		let tView, tScene, tCamera;
		let renderer, render;
		let testMesh;
		tScene = new RedGPU.Scene();
		tCamera = new RedGPU.Camera3D(this);
		tView = new RedGPU.View(this, tScene, tCamera);
		renderer = new RedGPU.Render();
		this.addView(tView)

		testMesh = new RedGPU.Mesh(this, new RedGPU.Box(this), new RedGPU.ColorMaterial(this))
		tScene.addChild(testMesh)

		tCamera.z = -5;
		tCamera.lookAt(0, 0, 0);

		render = time => {
			renderer.render(time, this)
			requestAnimationFrame(render)
		}
		requestAnimationFrame(render);
	}
);

Examples

  • See the example. Various examples are available.

etc

  • webGPU basic samples can be found here
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].