码迷,mamicode.com
首页 >  
搜索关键字:rotation    ( 305个结果
刚体变换与非刚体变换
刚体变换(rigid transformation)一般分为如下几种: 平移对象,而不改变形状和大小; 镜像(reflection),左右颠倒; 旋转(rotation),沿着任意方向的旋转; 非刚体变换:描述的是对几何物体大小而非形状的改变。 也即: 刚体变换:shift or reflectio ...
分类:其他好文   时间:2020-06-22 15:14:28    阅读次数:135
《算法竞赛进阶指南》0x28IDA* POJ2286 the rotation game
题目链接:http://poj.org/problem?id=2286 对于24个数组成的#,一共有8中拉的方式,求使得中间8个数相同的最小操作以及操作方式,由于一个结点扩展的分支有7个,所以朴素dfs将会在无法获得最优解的分支上花费太多时间 通过枚举操作次数可以避免dfs搜索过深,并且加上未来估计 ...
分类:编程语言   时间:2020-06-22 11:12:25    阅读次数:63
Codeforces Round #651 (Div. 2) E - Binary Subsequence Rotation 思维
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:其他好文   时间:2020-06-21 14:20:23    阅读次数:58
眼底分割相关code收集
1. https://github.com/wangzhaolei/retinal-vessel-segmentation-with-rotation-augmentation 2. https://github.com/rezazad68/BCDU-Net ...
分类:其他好文   时间:2020-06-08 23:56:51    阅读次数:101
聊聊 DisplayObject 的x/y/regX/regY/rotation/scale/skew 属性
首先要指出的是:DisplayObject 实例的属性<x, y> 与 graphics.draw*(x, y, ...) 的参数<x, y>没有关系。 在原生的 Canvas 中有 <x, y> 的概念,例如:ctx.rect(x, y, width, height)。于是我天真地以为 Displ ...
分类:其他好文   时间:2020-05-08 13:35:04    阅读次数:83
《每周一点canvas动画》——速度与加速度(2)
在上一节中我们介绍了速度的基本概念,包括沿坐标轴的速度,和更普适的任意方向的速度,在文章的最后我们做了一个鼠标跟随的示例,以及通过改变物体的rotation属性做了一个关于速度的扩展。通过上一节的学习你会发现我们的物体可以沿着任意方向运动,但是这还远远不够,因为我们的物体都是在做匀速运动。既然有匀速 ...
分类:其他好文   时间:2020-04-05 20:20:01    阅读次数:75
模型按一个圈摆放(10等分)
var R = 320; function setPosition(){ pivot2.position.x = - Math.sin(Math.PI/5)*R; pivot2.position.z = Math.cos(Math.PI/5)*R; pivot2.rotation.z = -Math ...
分类:其他好文   时间:2020-03-14 18:33:37    阅读次数:67
[Mathematics][Linear Algebra] The Rotation of the Base Vector in 3 dimensions
Rotation: Provided a vector $\vec{S}$,considering rotating the orthogonal base vectors $\{\hat{e_1},\hat{e_2},\hat{e_3}\}$ into new orthogonal base ve ...
分类:其他好文   时间:2020-03-02 12:50:38    阅读次数:55
数据结构-平衡二叉树(AVL树)
一、平衡二叉树的定义 1. 使树的高度在每次插入元素后仍然能保持O(logn)的级别 2. AVL仍然是一棵二叉查找树 3. 左右子树的高度之差是平衡因子,且值不超过1 二、平衡二叉树的基本操作 1. 查找操作 查找方法和二叉查找树一致 2. 插入操作 左旋(Left Rotation) 右旋(Ri ...
分类:其他好文   时间:2020-02-20 22:28:20    阅读次数:83
旋转坐标系
'Origin on WCS point: 0,0,6150 'Rotation of the Zaxis: -90 degrees 'Rotation of the Yaxis: 6 degrees 'Rotation of the Xaxis: 35 degrees 'Rotation of t ...
分类:其他好文   时间:2020-02-20 10:29:30    阅读次数:108
305条   上一页 1 2 3 4 5 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!