G(Grab) :移动物体 G--X,y,z或者鼠标中键: 可以锁定方向移动 S(scale) :缩放 S--X,Y,Z或者鼠标中键:可以锁定方向缩放 小键盘 1,3,7对应 后视图,左视图,顶视图ctrl+1,3,7 T(Tool):打开/关闭工具栏 R(rotate):旋转物体 双击R:360度 ...
分类:
其他好文 时间:
2019-02-16 13:36:40
阅读次数:
174
Problem: Given an array A, we may rotate it by a non-negative integer K so that the array becomes A[K], A[K+1], A{K+2], ... A[A.length - 1], A[0], A[1 ...
分类:
其他好文 时间:
2019-02-10 09:15:23
阅读次数:
168
Given a linked list, rotate the list to the right by k places, where k is non-negative. Example 1: Example 2: 题意 把链表循环右移k个 题解 1 class Solution { 2 pub ...
分类:
其他好文 时间:
2019-02-09 17:54:38
阅读次数:
158
https://leetcode.com/problems/rotate-list/ Given a linked list, rotate the list to the right by k places, where k is non-negative. Example 1: Example ...
分类:
其他好文 时间:
2019-02-09 11:57:48
阅读次数:
138
!function(e,t,a){ function n(){c(".heart{width: 10px;height: 10px;position: fixed;background: #f00;transform: rotate(45deg);-webkit-transform: rotate(... ...
分类:
Web程序 时间:
2019-02-08 11:47:42
阅读次数:
138
You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Note: You have to rotate the image in-place, which ...
分类:
其他好文 时间:
2019-02-07 19:01:55
阅读次数:
193
时间问题 lct先到这里吧 lct就是splay维护实链剖分 易错点 几个需要pushup的地方 1.rotate pushup(y); 2.splay pushup(x); 3.access pushup(x); 4.cut 最后 pushdown 1.find pushdown(x); 2.sp ...
分类:
其他好文 时间:
2019-02-06 12:02:45
阅读次数:
212
任意门:http://acm.hdu.edu.cn/showproblem.php?pid=6341 Problem J. Let Sudoku Rotate Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K ( ...
分类:
其他好文 时间:
2019-01-31 17:01:18
阅读次数:
189
旋转rotate()函数:通过指定的角度参数使元素相对原点进行旋转。transform: rotate(45deg); 扭曲 skew()函数:让元素倾斜显示。它可以将一个对象以其中心位置围绕着X轴和Y轴按照一定的角度倾斜。transform:skew(45deg); 缩放 scale()函数: 让 ...
分类:
Web程序 时间:
2019-01-31 15:22:42
阅读次数:
177
算法描述: Given a linked list, rotate the list to the right by k places, where k is non-negative. Example 1: Example 2: 解题思路:单链表的题目,画出图就可以解决了。注意边界条件,以及k值大 ...
分类:
其他好文 时间:
2019-01-30 15:56:54
阅读次数:
112