QGraphicsView实现简易地图16『爆炸效果』

前文链接:QGraphicsView实现简易地图15『测量面积』
一种简单的爆炸波扩散效果
动态演示效果:
在这里插入图片描述

静态展示图片:
在这里插入图片描述

核心代码:

#pragma once
#include "../AbstractGeoItem.h"
#include "DataStruct/GeoData.h"/** 爆炸扩散效果-静态*/class ExplosiveDiffusionItem : public AbstractGeoItem
{
public:ExplosiveDiffusionItem(const GeoCoord &geoCoord, int radius, QGraphicsItem *parent = nullptr);~ExplosiveDiffusionItem();// 更新地理位置virtual void updateGeoPos();protected:virtual QRectF boundingRect() const override;virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;// 设置半径(单位:米)void setRadius(int radius);// 获取半径(单位:米)int radius();protected:int m_radius;	// 半径(单位:米)double m_rw;	// 基于指定经纬度处的椭圆横轴半径double m_rh;	// 基于指定经纬度处的椭圆竖轴半径
};
#include "ExplosiveDiffusionItem.h"
#include <QRadialGradient>
#include <QPainter>
#include "Utility/MapUtility.h"ExplosiveDiffusionItem::ExplosiveDiffusionItem(const GeoCoord &geoCoord, int radius, QGraphicsItem *parent /*= nullptr*/) : AbstractGeoItem(parent)
{setZValue(300);setGeoPos(geoCoord.lon, geoCoord.lat);m_radius = radius;
}ExplosiveDiffusionItem::~ExplosiveDiffusionItem()
{}void ExplosiveDiffusionItem::updateGeoPos()
{AbstractGeoItem::updateGeoPos();prepareGeometryChange();
}QRectF ExplosiveDiffusionItem::boundingRect() const
{return QRectF(-m_rw, -m_rh, 2 * m_rw, 2 * m_rh);
}void ExplosiveDiffusionItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{QRadialGradient gr(0, 0, m_rw, 0, 0);gr.setColorAt(0.0, QColor(255, 255, 255, 0));gr.setColorAt(0.90, QColor(255, 255, 255, 10));gr.setColorAt(0.94, QColor(255, 255, 255, 40));gr.setColorAt(0.99, QColor(185, 225, 240, 255));gr.setColorAt(1, QColor(185, 225, 240, 128));painter->setRenderHint(QPainter::Antialiasing);painter->setBrush(gr);painter->setPen(Qt::NoPen);painter->drawEllipse(boundingRect());
}void ExplosiveDiffusionItem::setRadius(int radius)
{m_radius = radius;GeoCoord right = MapUtility::geoCoordByDisAndBearing(m_lon, m_lat, 90, m_radius);GeoCoord top = MapUtility::geoCoordByDisAndBearing(m_lon, m_lat, 0, m_radius);QPointF rightPos = sceneCoordFromGeoCoord(right.lon, right.lat);QPointF topPos = sceneCoordFromGeoCoord(top.lon, top.lat);QPointF centerPos = sceneCoordFromGeoCoord(m_lon, m_lat);m_rw = rightPos.x() - centerPos.x();m_rh = centerPos.y() - topPos.y();prepareGeometryChange();
}int ExplosiveDiffusionItem::radius()
{return m_radius;
}

此处提供的动态效果,是利用QPropertyAnimation制作而成,后面文章的动态效果也是采用这种方法,后续将不再展示代码,参考此处即可。

#pragma once
#include "ExplosiveDiffusionItem.h"/** 爆炸扩散效果-动态扩散*/class QPropertyAnimation;class ExplosiveDiffusionAnimateItem : public QObject, public ExplosiveDiffusionItem
{Q_OBJECTQ_PROPERTY(int m_radius WRITE setRadius READ radius)public:ExplosiveDiffusionAnimateItem(const GeoCoord &geoCoord, int radius, QGraphicsItem *parent = nullptr);~ExplosiveDiffusionAnimateItem();void start(int msecs = 1000);private:QPropertyAnimation *m_animation;
};
#include "ExplosiveDiffusionAnimateItem.h"
#include <QPropertyAnimation>ExplosiveDiffusionAnimateItem::ExplosiveDiffusionAnimateItem(const GeoCoord &geoCoord, int radius, QGraphicsItem *parent /*= nullptr*/): ExplosiveDiffusionItem(geoCoord, radius, parent)
{m_animation = new QPropertyAnimation(this, "m_radius", this);m_animation->setEasingCurve(QEasingCurve::InOutQuad);connect(m_animation, &QAbstractAnimation::finished, this, &ExplosiveDiffusionAnimateItem::finished);
}ExplosiveDiffusionAnimateItem::~ExplosiveDiffusionAnimateItem()
{}void ExplosiveDiffusionAnimateItem::start(int msecs/* = 1000*/)
{if (m_animation->state() != QAbstractAnimation::Stopped)m_animation->stop();m_animation->setDuration(msecs);m_animation->setStartValue(0);m_animation->setEndValue(m_radius);m_animation->start();
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/15626.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

sysbench压测mysql性能测试命令和报告

sysbench压测mysql性能测试命令和报告 一、安装sysbench工具二、创建测试数据库三、基于sysbench构造测试表和测试数据四、数据库性能测试1、数据库读写性能测试2、数据库读性能测试3、数据库删除性能测试4、数据库更新索引字段性能测5、数据库更新非索引字段性能测试6、数据库…

windows ip助手函数了解

根据手册,winsock编程中提供的有一类函数叫ip助手函数;比如Ipconfig函数,从名字看应该是可自己编程实现类似ipconfig命令的功能; 刚看到一个示例,是MS提供的,也属于这一类,代码如下, #include <winsock2.h> #include <ws2tcpip.h> #include <iphlpapi…

C++ vector类

目录 0.前言 1.vector介绍 2.vector使用 2.1 构造函数(Constructor) 2.1.1. 默认构造函数 (Default Constructor) 2.1.2 填充构造函数 (Fill Constructor) 2.1.3 范围构造函数 (Range Constructor) 2.1.4 拷贝构造函数 (Copy Constructor) 2.2 迭代器(Iterator) 2.2.…

十、通配符和正则表达式

10.1 通配符 通配符是由shell处理的, 它只会出现在 命令的“参数”里。当shell在“参数”中遇到了通配符 时&#xff0c;shell会将其当作路径或文件名去在磁盘上搜寻可能的匹配&#xff1a;若符合要求的匹配存在&#xff0c;则进 行代换(路径扩展)&#xff1b;否则就将该通配…

python安装依赖

创建 requirement.txt 文件并填充内容 flask2.0.0 pandas1.3.3 numpy1.21.2 安装模块 pip install -r requirement.txt

Spring boot使用集群方式、支持ssl连接redis的方法

1、需求背景 项目需要提供一个管理界面给内部人员操作用户信息&#xff0c;需要在修改用户信息后删除用户的redis缓存。用户所在的区域不同&#xff0c;其redis服务地址也不相同&#xff0c;因此需要管理多个redis连接&#xff0c;且redis要求以集群方式并支持ssl进行连接。 2…

Qt for android 获取USB设备列表(一)Java方式 获取

简介 QtActivity 作为 Qt 应用程序的入口点&#xff0c;负责启动和配置 Qt 应用程序的信息&#xff0c; 后面我们继承 QtActivity 做自定义控制&#xff0c;了解一下 Activity 生命周期概念&#xff0c; 因为 QtActivity 继承自Android的activity&#xff0c;使用周期函数完成我…

java8新特性——函数式编程详解

目录 一 概述1.1 背景1.2 函数式编程的意义1.3 函数式编程的发展 Lambda表达式1.1 介绍1.2 使用Lambda的好处1.3 Lambda方法1.3.1 Lambda表达式结构1.3.2 Lambda表达式的特征 1.4 Lambda的使用1.4.1 定义函数式接口1.4.2 Lambda表达式实现函数式接口1.4.3 简化Lambda表达式1.4.…

C++学习/复习4--与类相关的概念/默认成员函数/运算符重载/Date类实现案例

一、类和对象 1.本章概要 2.C中的结构体(struct与class) 升级为类 &#xff08;1&#xff09;类及成员函数的两种定义方式 声明与定义分离 &#xff08;2&#xff09;权限 注意1&#xff1a;struct/class在权限上的区别 &#xff08;3&#xff09;封装 &#xff08;4&#x…

AI学习指南数学工具篇-凸优化之对偶性与拉格朗日对偶

AI学习指南数学工具篇-凸优化之对偶性与拉格朗日对偶 在凸优化中&#xff0c;对偶性是一个非常重要的概念。通过对偶性&#xff0c;我们可以将原始问题转化为对偶问题&#xff0c;从而更容易求解。其中&#xff0c;拉格朗日对偶问题是对偶性的一个重要应用&#xff0c;通过拉格…

《Ai学习笔记》自然语言处理 (Natural Language Processing):机器阅读理解-基础概念解析01

自然语言处理 (Natural Language Processing)&#xff1a; NLP四大基本任务 序列标注&#xff1a; 分词、词性标注 分类任务&#xff1a; 文本分类、情感分析 句子关系&#xff1a;问答系统、对话系统 生成任务&#xff1a;机器翻译、文章摘要 机器阅读理解的定义 Machi…

LangChain - 建立代理

本文翻译整理自&#xff1a;Build an Agent https://python.langchain.com/v0.2/docs/tutorials/agents/ 文章目录 一、说明概念 二、定义工具1、TavilyAPI参考&#xff1a; 2、RetrieverAPI参考&#xff1a;API参考&#xff1a; 3、工具 三、使用语言模型四、创建代理五、运行…

《安富莱嵌入式周报》第337期:超高性能信号量测量,协议分析的开源工具且核心算法开源,工业安全应用的双通道数字I/O模组,低成本脑机接口,开源音频合成器

周报汇总地址&#xff1a;http://www.armbbs.cn/forum.php?modforumdisplay&fid12&filtertypeid&typeid104 视频版&#xff1a; https://link.zhihu.com/?targethttps%3A//www.bilibili.com/video/BV1PT421S7TR/ 《安富莱嵌入式周报》第337期&#xff1a;超高性…

【Spring Boot】分层开发 Web 应用程序(含实例)

分层开发 Web 应用程序 1.应用程序分层开发模式&#xff1a;MVC1.1 了解 MVC 模式1.2 MVC 和三层架构的关系 2.视图技术 Thymeleaf3.使用控制器3.1 常用注解3.1.1 Controller3.1.2 RestController3.1.3 RequestMapping3.1.4 PathVariable 3.2 将 URL 映射到方法3.3 在方法中使用…

用户数据报协议UDP实现可靠传输的思路

一、UDP协议的特点 按照报文来分割发送。不需要建立连接和维护连接。不需要接收确认。速度较快。不确保接收的顺序和发送顺序一样。 二、用UDP实现可靠通信的思路 (一)接收时发送一个确认报文 实现接收确认的机制。 (二)每个报文腾出空间放置序号 发送时设置序号&#xff0c…

如何安装虚拟机Wmware,并且在虚拟机中使用centos系统

1. 前言 大家好&#xff0c;我是jiaoxingk 本篇文章主要讲解如何安装虚拟机&#xff0c;并且在虚拟机中安装centos系统&#xff0c;让windows电脑也能够使用Linux系统 2. 虚拟机的介绍 在安装Vmware之前&#xff0c;我们先做虚拟机的介绍 虚拟机&#xff1a;通过软件虚拟出来的…

Docker拉取镜像报错:x509: certificate has expired or is not yet v..

太久没有使用docker进行镜像拉取&#xff0c;今天使用docker-compose拉取mongo发现报错&#xff08;如下图&#xff09;&#xff1a; 报错信息翻译&#xff1a;证书已过期或尚未有效。 解决办法&#xff1a; 1.一般都是证书问题或者系统时间问题导致&#xff0c;可以先执行 da…

用HAL库改写江科大的stm32入门例子-6-2 定时器外部时钟

实验目的&#xff1a; 熟悉外部时钟的应用。 实验步骤&#xff1a; 创建项目参照前面的文章&#xff0c;集成oled(没有oled,用uart串口传递也可以)选择外部时钟源时钟源参数设置编写代码&#xff1a; 5.1声明全局变量&#xff0c;如果发生定时器中断的时候&#xff0c;在回调…

SW 零件插入零件的重合配合

重合配合有时候会失效,可以先用距离配合代替,之后修改距离尽量接近