网站首页 站内搜索

搜索结果

查询Tags标签: three,共有 66条记录
  • Three.js立方体

    平面和缓冲平面:var geometry = new Three.PlaneBufferGeometry( 10, 10, 1,1 );var material = new Three.MeshBasicMaterial( { color: 0xffff00 } );var mesh= new Three.Mesh( geometry, material );this.scene.add( mesh);var geometry = new Three.PlaneGeometry( …

    2021/5/17 18:25:28 人评论 次浏览
  • Redis的List数据类型及常用命令

    Redis的List数据类型及常用命令 List可以想成一个双向链表 所有的List命令大多都是以l开头的 创建数据 LPUSH 插入数据是倒序 ,相当于插入的值放在列表的头部 127.0.0.1:6379> LPUSH list one two three (integer) 3 127.0.0.1:6379> LRANGE list 0 2 1) "thr…

    2021/5/13 2:55:20 人评论 次浏览
  • vue集成three.js加载模型

    1、安装插件npm install three --save-devnpm install three three-orbitcontrolsnpm install three three-obj-mtl-loader stats-js 2、<template><div id="container"></div> </template><script>import * as Three from three…

    2021/5/11 10:29:47 人评论 次浏览
  • 零基础入门学Python(七)—— 字典和集合

    零基础入门学Python系列内容的学习目录 → \rightarrow →零基础入门学Python系列内容汇总。1. 字典1.1 创建和访问字典1.2 各种内置方法2. 集合2.1 创建集合2.2 访问集合2.3 不可变集合  需要学…

    2021/4/24 14:55:10 人评论 次浏览
  • Python:敲代码做笔记

    1. np.transpose() 函数原型: transpose(a, axes=None)参数: a:输入数组axes:可选的一组list,根据给定的list调换数组各位置的值(我也不知道怎么表述,直接看下面的例子吧),默认将数组各维度反转(矩阵转置) 返回值:ndarray类型,变换后的数组视图 示例1:一维数…

    2021/4/24 14:26:54 人评论 次浏览
  • 【DB笔试面试119】在Oracle中,Identify three key features of ASM()

    Q 题目如下所示: Identify three key features of ASM.(Choose three.)A、file stripingB、allocation unit mirroringC、automatic disk rebalancingD、automatic file size incrementE、automatic undo management A 答案:A、B、C。 题目要求选出ASM的3个主要特点…

    2021/4/16 2:26:27 人评论 次浏览
共66记录«上一页12345下一页»
扫一扫关注最新编程教程