这个软件是一个用于3D建模的重要软件,QT modeler是一个非常好用的软件,功能也很强大,但是寻找这个软件教程非常麻烦,所以我在此分享出来,供大家学习参考。
2022-01-16 21:30:10 7.09MB 3D建模
1
3d模型的科普讲座非常好
2022-01-16 14:05:16 2.64MB 3D 建模
1
几款吉普车的3D模型
2022-01-08 19:02:55 19.72MB 3Dmax 吉普车模型 3D建模
1
Grasshooper+Ghpython的入门教程,适合Grasshooper初学者和想使用python进行3D建模的童鞋
2022-01-06 16:39:26 32.89MB python ghpython grasshooper 3D建模
1
SLDPRT格式
2021-12-30 09:02:32 1017KB creo 3d建模
1
主程序: #include "gyro.h" #include "pid.h" #include "motor.h" #define dt 10 // in ms /* Object definitions and settings */ Gyro myGyro(dt); PIDControl pid(1.0,0,0.005,-255,255,dt); OmniMotorDriver omd; /* Deadzone definition. With a rotation of less than this value, * the robot will stand still */ double deadzone = 1.5; /* Buffers for timing, gyro data and PID outputs */ long lastMillis; double xAngle, yAngle; double xOut, yOut; /* Main setup call * Initializes Serial, the IMU and prepares the motor driver, * calbriates the IMU and enables the PID controller */ void setup() { pinMode(13, OUTPUT); Serial.begin(115200); if(!myGyro.init()) { while(1) { digitalWrite(13, HIGH); delay(1000); digitalWrite(13, LOW); delay(2000); } } myGyro.calibrate(); omd.init(); pid.enable(); } /* Main loop * The main loop connects all the libraries and classes together, * in that it describes the order of function calls that is necessary * for the function of the robot */ void loop() { /* Save the current point in time in lastMillis */ lastMillis = millis(); /* Get Data from Gyro */ myGyro.update(&xAngle, &yAngle); /* Compute PID Output with the data */ pid.compute(xAngle, yAngle, &xOut, &yOut); /* Plot Angle on Serial Plotter Serial.print(xAngle); Serial.print(" "); Serial.print(yAngle); Serial.println(" "); */ /* Plot Angle on Serial Plotter Serial.print(xOut); Serial.print(" "); Serial.println(yOut); */ /* If any calculated angle is larger than the deadzone */ if(abs(xAngle) > deadzone || abs(yAngle) > deadzone) { /* Actually drive the motors */ omd.drive(xOut, yOut); /* Otherwise, stop them */ } else omd.stop(); /* Wait until the next dt cycle * if processing took less than dt, wait for the remaining time, * otherwise wait for the next full cycle to start * This is needed for gyro and PID accuracy */ int pTime = millis() - lastMillis; int resttime = (dt > pTime
2021-12-14 18:04:26 66.38MB Arduino 球轮机器人 PID平衡 3D建模
开源软件,windows64,主页下载很慢,放这里。安装包很小的3D建模工具,适合初学、中级制作人士。blender-2.82-windows64.msi,132MB
2021-11-17 15:06:37 129.68MB 3D建模
1
2D头像照片自动生成3D模型,支持大部分3D图像文件格式导出,可调整五官,肤色等面部细节,还可设置面部表情。
2021-11-11 15:23:03 96.78MB 3D建模 面部识别
1
三模型系统 基于THREE.JS的3D建模系统(毕设项目) 预览 技术栈 React + TypeScript + Css-Module + Ant-Design + Three.js 目录结构 three-model-system/ │ │── src/ * 源文件 │ | | |—— common/ * 公共文件 | | | | | |—— constants/ * 常数 | | | | | |—— helper/ * 工具方法 | | | | | |—— models/ * 模型 | | | |—— components/ *
2021-11-09 20:36:46 2.02MB 系统开源
1
功能强大,和PC上差不多
2021-10-22 09:00:15 2.28MB 建模 PocketBlender Blender 3D
1