This website works better with JavaScript.
Explore
Help
Sign In
Unbewohnte
/
cloth_simulation
Watch
1
Star
0
Fork
You've already forked cloth_simulation
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7
Commits
1
Branch
0
Tags
6.1 MiB
Tree:
8f80b7fe6b
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '8f80b7fe6b'
${ noResults }
cloth_simulation
/
src
/
vec.hpp
11 lines
115 B
Raw
Normal View
History
Unescape
Escape
base
3 years ago
#
pragma once
struct
Vec2
{
unsigned
int
x
;
unsigned
int
y
;
}
;
struct
Vec2f
{
float
x
;
float
y
;
}
;