Caricamento v0.2

This commit is contained in:
2026-05-31 10:42:30 +02:00
parent 16806a0d85
commit e50e2987c9
29 changed files with 3411 additions and 16687 deletions
+2 -2
View File
@@ -4,10 +4,10 @@
Sensore::Sensore(rb::Vector3 coords, _Float16 mass){
size = sensore_Dim;
rb::Vector3 com = {size.x/2,0, size.y/2};
body = rb::rigidbody({0,0,0}, com, mass);
body = rb::rigidbody(coords, com, mass);
color = sensore_Col;
shape = new sf::RectangleShape(size);
globalPos = coords;
globalPos = {0,0,0};
}
Sensore::Sensore(rb::Vector3 coords, _Float16 mass, unsigned int st, unsigned int dataIntvl, std::vector<std::vector<float>> data) : Sensore(coords, mass){