C++ C# 贝塞尔曲线

二阶贝塞尔曲线公式

 三阶贝塞尔曲线公式

C++ 三维坐标点  二阶到N阶源码

//二阶公式:
FVector BezierUtils::CalculateBezierPoint(float t, FVector startPoint, FVector controlPoint, FVector endPoint)
{float t1 = (1 - t) * (1 - t);float t2 = 2 * t * (1 - t);float t3 = t * t;return t1 * startPoint + t2 * controlPoint + t3 * endPoint;
}// 三阶贝塞尔曲线
FVector BezierUtils::BezierCurve(Vector3 p0, Vector3 p1, Vector3 p2, Vector3 p3, float t)
{Vector3 B = Vector3.zero;float t1 = (1 - t) * (1 - t) * (1 - t);float t2 = 3 * t * (1 - t) * (1 - t);float t3 = 3 * t * t * (1 - t);float t4 = t * t * t;return t1 * p0 + t2 * p1 + t3 * p2 + t4 * p3;
}/// n阶贝塞尔曲线
FVector BezierUtils::BezierCurve(List<FVector3> pointList, float t)
{FVector B = FVector(0,0,0);if (pointList == null){return B;}if (pointList.Count < 2){return pointList[0];}List<Vector3> tempPointList = new List<Vector3>();for (int i = 0; i < pointList.Count - 1; i++){Vector3 tempPoint = BezierCurve(pointList[i], pointList[i + 1], t);tempPointList.Add(tempPoint);}return BezierCurve(tempPointList, t);
}

C# 三维坐标点  二阶到N阶源码

using UnityEngine;
using System.Collections.Generic;/// <summary>
/// 贝塞尔工具类
/// </summary>
public static class BezierUtils
{/// <summary>/// 线性贝塞尔曲线/// </summary>public static Vector3 BezierCurve(Vector3 p0, Vector3 p1, float t){Vector3 B = Vector3.zero;B = (1 - t) * p0 + t * p1;return B;}/// <summary>/// 二阶贝塞尔曲线/// </summary>public static Vector3 BezierCurve(Vector3 p0, Vector3 p1, Vector3 p2, float t){Vector3 B = Vector3.zero;float t1 = (1 - t) * (1 - t);float t2 = 2 * t * (1 - t);float t3 = t * t;B = t1 * p0 + t2 * p1 + t3 * p2;return B;}/// <summary>/// 三阶贝塞尔曲线/// </summary>public static Vector3 BezierCurve(Vector3 p0, Vector3 p1, Vector3 p2, Vector3 p3, float t){Vector3 B = Vector3.zero;float t1 = (1 - t) * (1 - t) * (1 - t);float t2 = 3 * t * (1 - t) * (1 - t);float t3 = 3 * t * t * (1 - t);float t4 = t * t * t;B = t1 * p0 + t2 * p1 + t3 * p2 + t4 * p3;return B;}/// <summary>/// n阶贝塞尔曲线/// </summary>public static Vector3 BezierCurve(List<Vector3> pointList, float t){Vector3 B = Vector3.zero;if (pointList == null){return B;}if (pointList.Count < 2){return pointList[0];}List<Vector3> tempPointList = new List<Vector3>();for (int i = 0; i < pointList.Count - 1; i++){Vector3 tempPoint = BezierCurve(pointList[i], pointList[i + 1], t);tempPointList.Add(tempPoint);}return BezierCurve(tempPointList, t);}
}

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

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

相关文章

RIP动态路由协议详解

目录 一&#xff1a;RIP协议的基本信息 二&#xff1a;RIP协议中的更新方式 三&#xff1a;RIP协议中的计时器 定时更新器&#xff08;UPDATE timer&#xff09; 无效定时器&#xff08;invalid Timer&#xff09; 垃圾收集定时器&#xff08;garbage collection timer&a…

Nachi那智不二越机器人维修技术合集

一、Nachi机械手维护基础知识 1. 定期检查&#xff1a;定期检查机器人的各个部件&#xff0c;如机械手伺服电机、机器人减速器、机械臂传感器等&#xff0c;确保其运行正常。 2. 清洁与润滑&#xff1a;定期清洁Nachi工业机器人表面和内部&#xff0c;并使用合适的润滑油进行润…

Failed to start tomcat.service: Unit is not loaded properly: Bad message 如何解决?

错误 “Failed to start tomcat.service: Unit is not loaded properly: Bad message” 通常意味着的 tomcat.service systemd 配置文件存在语法错误或配置不正确。为了解决这个问题&#xff0c;一步步检查和修正这个服务文件。 1. 检查 tomcat.service 文件 首先&#xff0c…

Nginx最详细入门教程

Nginx 一、Nginx入门介绍 1.1、Nginx简介 1.2、Nginx和Apache 二、安装配置Nginx 2.1、安装配置 2.2、配置文件常规优化 2.3、虚拟主机 三、LNMP架构及应用部署 3.1、安装MySQL数据库 3.2、安装PHP 3.3、配置Nginx支持PHP环境 3.4、在LNMP平台部署Web应…

HarmonyOS NEXT星河版之美团外卖点餐功能实战(下)

文章目录 一、购物车逻辑1.1 购物车及加减菜1.2 菜品的加减---方案一1.3 菜品的加减---方案二1.4 购物车View完善1.5 清空购物车1.5 购物车数量和价格 二、小结 一、购物车逻辑 1.1 购物车及加减菜 在utils目录下新建CartStore.ets文件&#xff0c;如下&#xff1a; import …

电脑文件夹怎么加密?文件夹加密软件怎么选?

文件夹是管理电脑文件的重要工具&#xff0c;可以避免电脑文件数据混乱。而为了避免文件夹数据泄露&#xff0c;我们需要加密保护文件夹。那么&#xff0c;电脑文件夹怎么加密呢&#xff1f;文件夹加密软件该怎么选择呢&#xff1f;下面我们就来了解一下吧。 如何挑选文件夹加…

我必须要吹一波MATLAB 2024a,太牛逼了!|福利:附安装教程及下载地址

最近逛MATLAB官网&#xff0c;发现MATLAB 2024a版本已经Pre-release了&#xff0c;翻了下release note&#xff0c;不得不感叹&#xff0c;实在是太强了&#xff01; 这次重点更新了四个工具箱&#xff1a; Computer Vision Toolbox Deep Learning Toolbox Instrument Contro…

11.买卖股票的最佳时机Ⅰ

文章目录 题目简介题目解答解法一&#xff1a;一次遍历代码&#xff1a;复杂度分析&#xff1a; 题目链接 大家好&#xff0c;我是晓星航。今天为大家带来的是 买卖股票的最佳时机面试题Ⅰ 相关的讲解&#xff01;&#x1f600; 题目简介 题目解答 解法一&#xff1a;一次遍历…

Python计算器程序代码

from tkinter import * import random class App: def __init__(self, master): self.master master self.initwidgets() #表达式的值 self.expr None def initwidgets(self): #定义一个输入组件 self.show Label(relief SUNKEN, font (Courier New, 24), width 25, bg …

Qt Tab键切换焦点顺序:setTabOrder()

使用这个方法setTabOrder()&#xff0c;设置使得焦点的顺序从前到后依次是&#xff1a; ui->lineEdit》 ui->lineEdit_2》ui->lineEdit_3 》ui->lineEdit_4 焦点先在ui->lineEdit上&#xff0c;当按下Tab键时&#xff0c;焦点跑到ui->lineEdit_2上。。。按…

XC7VX690T-2FFG1761I 中文资料 XC7VX690T-2FFG1761引脚图及功能说明

XC7VX690T-2FFG 是由Xilinx&#xff08;赛灵思&#xff09;公司生产的FPGA&#xff08;Field Programmable Gate Array&#xff0c;现场可编程门阵列&#xff09;芯片。FPGA是一种可编程的集成电路&#xff0c;用户可以根据需要将其配置为具有特定逻辑功能的电路。 XC7VX690T-…

windows轻松管理nodejs 版本 升/降级 卸载等等

#nvm-windows 管理nodejs 版本神器# 不经意升级了node版本导致原有项目启动异常, 看到了node版本管理神器:nvm-windos 1,先下载 nvm >> git 选择如下安装包或 nvm-setup.exe文件 https://github.com/coreybutler/nvm-windows/releases/tag/1.1.12 2. 双击安装,下一…