功能: 1,常规自定义拖动时间 2,异形窗体 3,鼠标进出区域 4,自定义右键菜单 5,自动贴边以及防止拖拽出屏幕区域
1
填充,初始化,结果显示
2021-12-15 14:46:20 78KB 填充 初始化 结果显示
1
35个unity游戏项目实例源码(含运动类游戏),主要有Rocket Dodge(火箭道奇),Bumper Balls(网络碰碰)、Kart Racer(卡丁车手)、Turret Defense(炮塔防御)、RunAndGun(炉石传说)、TankRunner(沙漠土狼坦克大冒险)、laneWars(巷战)、shmup(爱的轰炸)、cleaners(清洁工)、pinball(弹平台)、ballsky(的天空)、CyberTanks(坦克大战)等游戏源码。素材+源码一应俱全,可以直接开发使用!
matlab弹跳代码弹接触参数估计 此提交包含一组使用 Simulink、Simscape Multibody、Image Processing Toolbox 和 Computer Vision Toolbox 创建的模型。 关于模型:这些模型显示了一个工作流程,以找到可以模拟弹跳和碰撞的真实行为的最佳接触参数。 以下步骤描述了工作流程: 记录的轨迹 轨迹后处理 使用 Simscape Multibody 构建物理模型 估计最佳接触参数以匹配真实轨迹 楷模 跟踪 包含轨迹跟踪模型 插值 包含MATLAB轨迹数据插值代码 ##ballDropParaEstimation 包含一个真实的物理模型来估计接触参数 ##ballWallCollision 包含碰撞模型 产品要求: 模型使用以下 MathWorks 产品,均来自 R2019b 版本:1)MATLAB 2)Simulink 3)Simscape Multibody 4)Image Processing Toolbox 5)Computer Vision Toolbox 版权所有 2020 The MathWorks
2021-12-14 18:18:26 1.02MB 系统开源
1
主程序: #include "sys.h" u8 Flag_Left,Flag_Right; // u8 Flag_Stop=1,Flag_Zero=0,Flag_Show,Flag_Qian,Flag_Hou,Flag_Left,Flag_Right,Flag_OK; //停止标志位和 显示标志位 默认停止 显示打开 float Motor_X,Motor_Y,Motor_Z; long int Motor_A,Motor_B,Motor_C; //电机PWM变量 long int Target_A,Target_B,Target_C; //电机目标值 int Voltage; //电池电压采样相关的变量 float Show_Data1,Show_Data2,Show_Data3,Show_Data4; //全局显示变量,用于显示需要查看的数据 u8 delay_50,delay_flag; //延时相关变量 u8 PID_Send; //CAN和串口控制相关变量 float Pitch,Roll,Yaw,Move_X,Move_Y,Move_Z,Roll_Bias,Pitch_Bias,Roll_Zero,Pitch_Zero; float Balance_Kp=200,Balance_Kd=19,Velocity_Kp=55,Velocity_Ki=10; //位置控制PID参数 int main(void) { Stm32_Clock_Init(9); //=====系统时钟设置 delay_init(72); //=====延时初始化 JTAG_Set(JTAG_SWD_DISABLE); //=====关闭JTAG接口 JTAG_Set(SWD_ENABLE); //=====打开SWD接口 可以利用主板的SWD接口调试 LED_Init(); //=====初始化与 LED 连接的硬件接口 KEY_Init(); //=====按键初始化 OLED_Init(); //=====OLED初始化 uart_init(72,128000); //=====串口1初始化 uart2_init(36,9600); //=====串口2初始化 uart3_init(36,115200); //=====串口3初始化 Adc_Init(); //=====adc初始化 IIC_Init(); //=====IIC初始化 delay_ms(50); MPU6050_initialize(); //=====MPU6050初始化 DMP_Init(); //=====初始化DMP delay_ms(500); //=====延时等待初始化稳定 EXTI_Init(); //=====MPU6050 5ms定时中断初始化 CAN1_Mode_Init(1,2,3,6,0); //=====CAN初始化 MiniBalance_PWM_Init(7199,14); //=====初始化PWM 用于驱动电机 while(1) { if(Flag_Show==0) { DataScope(); //===上位机 delay_flag=1; //===50ms中断精准延时标志位 oled_show(); //===显示屏打开 while(delay_flag); //===50ms中断精准延时 主要是波形显示上位机需要严格的50ms传输周期 } else { APP_Show(); //===APP oled_show(); //===显示屏打开 delay_flag=
2021-12-14 18:04:26 4.43MB STM32F103 球轮机器人 平衡机器人
主程序: #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建模
高尔夫高下杆技巧详细介绍.pdf
2021-12-14 14:02:20 1.22MB
这是孔令德开发的面Phong明暗处理源程序 ,开发语言为MFC。程序编译后可以直接运行,程序的原理说明见孔令德《计算机图形学基础教程(Visual C++版)》(第2版)和《计算机图形学实践教程(Visual C++版)》(第2版)。如果需要更多的资源,请联系作者。
2021-12-13 23:27:12 248KB Phong 明暗处理
1
opengl碰撞检测例子,和三角面片的碰撞检测
2021-12-13 19:19:33 70KB 碰撞检测
1
英语颜色时间水果星期科目动物.pdf
2021-12-13 17:01:30 7KB