码迷,mamicode.com
首页 >  
搜索关键字:rect transform    ( 8681个结果
获取当前运行程序上一级目录指定文件夹,没有就创建文件夹
//获取当前运行程序上一级目录PDF文件夹 private string txtPath = System.AppDomain.CurrentDomain.BaseDirectory + "PDF\\"; //如果该文件下没有PDF文件夹就创建该文件夹 if (!Directory.Exists(t ...
分类:其他好文   时间:2021-04-10 12:52:27    阅读次数:0
如何使用 QTransform 绕指定点旋转指定角度?
平移->旋转->反向平移 QPointF data; QPointF origin; qreal degrees = 45.0; QMatrix transform; transform = transform.translate(origin.x(),origin.y()).rotate(degr ...
分类:其他好文   时间:2021-04-08 14:00:14    阅读次数:0
vux中的 scroller 组件,在iOS13上,一停止滑动就跳到顶部问题
bug出现的原因 1、发现是ios13上面获取transform的结果跟老版本的结果不一样: // 老版本: 'matrix(1, -2.4492935982947064, 2.4492935982947064, 1, 0, 19.48200035095215)' //新版本 'matrix(1, ...
分类:移动开发   时间:2021-04-08 13:53:58    阅读次数:0
transformer模型转torchscript格式
from transformers import BertModel, BertTokenizer, BertConfig import torch enc = BertTokenizer.from_pretrained("bert-base-uncased") # 输入文本tokenize tex ...
分类:其他好文   时间:2021-04-08 13:24:15    阅读次数:0
css3 地球自转公转
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:Web程序   时间:2021-04-08 13:22:19    阅读次数:0
HTML(三)图像标签
HTML(三)图像标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ImageDirectoryStudy</title> </head> <body> <img src="../resourse/ima ...
分类:Web程序   时间:2021-04-06 14:05:55    阅读次数:0
走迷宫——最短路径(DFS)
问题:求从起点走到终点的最短路径 Java代码: 1 package com.lzp.maze.dfs; 2 3 import java.util.Scanner; 4 5 /** 6 * @author LZP 7 * @date 2021年4月3日 8 * @Description 9 * @v ...
分类:其他好文   时间:2021-04-05 12:41:26    阅读次数:0
SavetheattachmentNew
Public Sub SavetheattachmentNew(Item As Outlook.MailItem) Dim olApp As New Outlook.Application Dim nmsName As Outlook.NameSpace Dim vItem As Object Se ...
分类:其他好文   时间:2021-04-02 13:02:04    阅读次数:0
pygame中的重要模块
这几天接触到的pgame的模块主要有用于控制显示的display模块,用于图像控制的surface模块、用户画出各种图形形状的draw模块以及对surface对象进行操作,比如翻转、剪裁等操作的transform模块、pygame中内嵌的矩形对象,这里不同于画图中的形状,更重要的是rect对象可以存 ...
分类:其他好文   时间:2021-04-01 13:29:52    阅读次数:0
CS DES任意长度密钥加密
CS DES任意长度密钥加密 private static string Encrypt2(string str, string sKey) { string s = ""; using (System.Security.Cryptography.DESCryptoServiceProvider d ...
分类:其他好文   时间:2021-04-01 12:53:38    阅读次数:0
8681条   上一页 1 ... 6 7 8 9 10 ... 869 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!