top of page
COZY COZY WORLD
I am an ordinary Japanese salaryman in his 50's.
The posts are mostly about my attempts at programming which I have taken up recently to maintain logical thinking.
And a bit about my travels around the country.
Home: ようこそ!
Search
fluid
https://developer.nvidia.com/gpugems/gpugems/part-vi-beyond-triangles/chapter-38-fast-fluid-dynamics-simulation-gpu
cedarcantab
Apr 4, 20241 min read
2 views
0 comments
sopiro grab
import { Joint } from "./joint.js"; import { Matrix2, Vector2 } from "./math.js"; import { RigidBody } from "./rigidbody.js"; import {...
cedarcantab
Apr 2, 20241 min read
5 views
0 comments
sopiro nsquared
import { Pair } from "./util.js"; import { RigidBody } from "./rigidbody.js"; import { createAABB, detectCollisionAABB } from "./aabb.js";...
cedarcantab
Apr 2, 20241 min read
6 views
0 comments
sopiro island
import { Constraint } from "./constraint.js"; import { ContactManifold } from "./contact.js"; import { Joint } from "./joint.js"; import...
cedarcantab
Apr 2, 20242 min read
4 views
0 comments
sopiro input
import { Engine } from "./engine"; import { Vector2 } from "./math.js"; import { Settings, updateSetting } from "./settings.js"; export...
cedarcantab
Apr 2, 20242 min read
3 views
0 comments
sopiro distant constraint
import { Joint } from "./joint.js"; import { Vector2 } from "./math.js"; import { RigidBody } from "./rigidbody.js"; import { Settings }...
cedarcantab
Apr 2, 20242 min read
4 views
0 comments
sopiro angle constraint
import { Joint } from "./joint.js"; import { RigidBody } from "./rigidbody.js"; import { Settings } from "./settings.js"; export class...
cedarcantab
Apr 2, 20241 min read
6 views
0 comments
sopiro contact
import { RigidBody } from "./rigidbody.js"; import { Matrix2, Vector2 } from "./math.js"; import { Settings } from "./settings.js"; import...
cedarcantab
Apr 2, 20247 min read
2 views
0 comments
sopiro poly
polygon import { RigidBody, Type } from "./rigidbody.js"; import { Vector2 } from "./math.js"; import as Util from "./util.js"; import {...
cedarcantab
Apr 2, 20242 min read
5 views
0 comments
sopiro rb
entity import { Matrix3, Vector2 } from "./math.js"; export class Entity { protected _position: Vector2; protected _rotation: number;...
cedarcantab
Apr 2, 20243 min read
5 views
0 comments
sopiro detection
import { Circle } from "./circle.js"; import { RigidBody } from "./rigidbody.js"; import { ContactManifold } from "./contact.js"; import...
cedarcantab
Apr 2, 20245 min read
4 views
0 comments
sopiro sim
engine. import { Game } from "./game.js"; import { Renderer } from "./renderer.js" import * as Input from "./input.js"; import { Settings...
cedarcantab
Apr 2, 20246 min read
1 view
0 comments
p2 Revolute
var Constraint = require('./Constraint') , Equation = require('../equations/Equation') , RotationalVelocityEquation =...
cedarcantab
Apr 2, 20245 min read
3 views
0 comments
p2 Solver
var EventEmitter = require('../events/EventEmitter'); module.exports = Solver; /** * Base class for constraint solvers. * @class Solver...
cedarcantab
Apr 2, 20244 min read
2 views
0 comments
p2 Shape
module.exports = Shape; var vec2 = require('../math/vec2'); /** * Base class for shapes. Not to be used directly. * @class Shape *...
cedarcantab
Apr 2, 20244 min read
4 views
0 comments
p2 Plane
var Shape = require('./Shape') , vec2 = require('../math/vec2') , Utils = require('../utils/Utils'); module.exports = Plane; ...
cedarcantab
Apr 2, 20242 min read
7 views
0 comments
p2 Line
var Shape = require('./Shape') , shallowClone = require('../utils/Utils').shallowClone , vec2 = require('../math/vec2'); ...
cedarcantab
Apr 2, 20242 min read
6 views
0 comments
p2 HeightField
var Shape = require('./Shape') , vec2 = require('../math/vec2') , shallowClone = require('../utils/Utils').shallowClone; ...
cedarcantab
Apr 2, 20243 min read
5 views
0 comments
SPH
https://hmbd.wordpress.com/2019/03/24/references-on-smooth-particle-hydrodynamics-sph/ sketch.js // Fluid Simulation // Daniel Shiffman...
cedarcantab
Mar 31, 20245 min read
3 views
0 comments
Gift Wrapping Algorithm Convex Hull
There are many different convex hull algorithms. I looked at several, including Jarvis March, Graham Scan and QuickHull. Simplest is...
cedarcantab
Mar 30, 20243 min read
4 views
0 comments
Home: Blog2
Home: 配信登録
bottom of page