当前位置: 首页 > news >正文

网站设计师绩效网络稿件投稿平台

网站设计师绩效,网络稿件投稿平台,编程在线培训,信阳市网站建设26. Three.js案例-自定义多面体 实现效果 知识点 WebGLRenderer WebGLRenderer 是 Three.js 中用于渲染场景的主要类。它支持 WebGL 渲染,并提供了多种配置选项。 构造器 new THREE.WebGLRenderer(parameters) 参数类型描述parametersObject可选参数对象&…

26. Three.js案例-自定义多面体

实现效果

效果

知识点

WebGLRenderer

WebGLRenderer 是 Three.js 中用于渲染场景的主要类。它支持 WebGL 渲染,并提供了多种配置选项。

构造器

new THREE.WebGLRenderer(parameters)

参数类型描述
parametersObject可选参数对象,用于配置渲染器。

常用参数:

  • antialias:布尔值,是否开启抗锯齿,默认为 false
  • alpha:布尔值,是否允许透明背景,默认为 false
  • premultipliedAlpha:布尔值,是否使用预乘 alpha,默认为 true
  • preserveDrawingBuffer:布尔值,是否保留绘图缓冲区,默认为 false
  • stencil:布尔值,是否创建模板缓冲区,默认为 true
  • depth:布尔值,是否创建深度缓冲区,默认为 true
  • logarithmicDepthBuffer:布尔值,是否使用对数深度缓冲区,默认为 false
方法
  • setSize(width, height, updateStyle): 设置渲染器的尺寸。
  • setClearColor(color, alpha): 设置渲染器的背景颜色和透明度。
  • render(scene, camera): 渲染场景。

Scene

Scene 是 Three.js 中用于存储所有场景对象的容器。

构造器

new THREE.Scene()

PerspectiveCamera

PerspectiveCamera 是 Three.js 中用于创建透视相机的类。

构造器

new THREE.PerspectiveCamera(fov, aspect, near, far)

参数类型描述
fovNumber视野角度(以度为单位)。
aspectNumber相机的宽高比。
nearNumber近裁剪面距离。
farNumber远裁剪面距离。

SpotLight

SpotLight 是 Three.js 中用于创建聚光灯的类。

构造器

new THREE.SpotLight(color, intensity, distance, angle, penumbra, decay)

参数类型描述
colorColor光源的颜色。
intensityNumber光源的强度,默认为 1。
distanceNumber光源的最大影响距离,默认为 0(无限远)。
angleNumber聚光灯的角度,默认为 π/3。
penumbraNumber半影区域的比例,默认为 0。
decayNumber光照衰减,默认为 1。

PolyhedronGeometry

PolyhedronGeometry 是 Three.js 中用于创建多面体几何体的类。

构造器

new THREE.PolyhedronGeometry(vertices, indices, radius, detail)

参数类型描述
verticesArray顶点数组,每个顶点包含三个坐标值。
indicesArray面索引数组,每个面包含三个顶点索引。
radiusNumber多面体的半径,默认为 1。
detailNumber细分级别,默认为 0。

MeshLambertMaterial

MeshLambertMaterial 是 Three.js 中用于创建 Lambert 材质的类。

构造器

new THREE.MeshLambertMaterial(parameters)

参数类型描述
colorColor材质的颜色。
opacityNumber材质的透明度,默认为 1。
transparentBoolean是否启用透明,默认为 false
sideNumber渲染哪一面,默认为 THREE.FrontSide
wireframeBoolean是否使用线框模式,默认为 false

Mesh

Mesh 是 Three.js 中用于创建网格对象的类。

构造器

new THREE.Mesh(geometry, material)

参数类型描述
geometryGeometry网格的几何体。
materialMaterial网格的材质。

OrbitControls

OrbitControls 是 Three.js 中用于创建轨道控制器的类,用于控制相机的旋转、缩放和平移。

构造器

new THREE.OrbitControls(camera, domElement)

参数类型描述
cameraCamera控制的相机对象。
domElementHTMLElement控制器绑定的 DOM 元素。

代码

<!DOCTYPE html>
<html>
<head><meta charset="UTF-8"><script src="ThreeJS/three.js"></script><script src="ThreeJS/jquery.js"></script><script src="ThreeJS/OrbitControls.js"></script>
</head>
<body>
<center id="myContainer"></center>
<script>// 创建渲染器var myRenderer = new THREE.WebGLRenderer({antialias: true});myRenderer.setSize(window.innerWidth, window.innerHeight);myRenderer.setClearColor('white', 1.0);$("#myContainer").append(myRenderer.domElement);// 创建场景var myScene = new THREE.Scene();// 创建相机var myCamera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.01, 1000);myCamera.position.set(-8.43, 122.11, 1.63);myCamera.lookAt(myScene.position);// 创建光源var myLight = new THREE.SpotLight('white');myLight.position.set(0, 60, 30);myScene.add(myLight);// 创建自定义多面体var myVertices = [1, 0, 1, 1, 0, -1, -1, 0, -1, -1, 0, 1, 0, 1, 0];var myFaces = [0, 1, 2, 2, 3, 0, 0, 1, 4, 1, 2, 4, 2, 3, 4, 3, 0, 4];var myGeometry = new THREE.PolyhedronGeometry(myVertices, myFaces, 1, 1);var myMaterial = new THREE.MeshLambertMaterial({color: 'cyan'});var myMesh = new THREE.Mesh(myGeometry, myMaterial);myMesh.scale.set(32, 32, 32);myScene.add(myMesh);// 渲染自定义多面体animate();function animate() {myRenderer.render(myScene, myCamera);requestAnimationFrame(animate);}// 创建轨道控制器var myOrbitControls = new THREE.OrbitControls(myCamera);
</script>
</body>
</html>

演示链接

示例链接


文章转载自:
http://dinncomicroanalyzer.tqpr.cn
http://dinncoblimy.tqpr.cn
http://dinncochancellery.tqpr.cn
http://dinncoseismotic.tqpr.cn
http://dinncobigamy.tqpr.cn
http://dinncotrompe.tqpr.cn
http://dinncoangiotensin.tqpr.cn
http://dinncoprotectionism.tqpr.cn
http://dinncoalbanian.tqpr.cn
http://dinncorecitable.tqpr.cn
http://dinncobergall.tqpr.cn
http://dinncoeatery.tqpr.cn
http://dinncomoab.tqpr.cn
http://dinncogentamicin.tqpr.cn
http://dinncoaustralis.tqpr.cn
http://dinncointention.tqpr.cn
http://dinncoitalicise.tqpr.cn
http://dinncovixen.tqpr.cn
http://dinncoarterial.tqpr.cn
http://dinncopinealoma.tqpr.cn
http://dinncowallet.tqpr.cn
http://dinncopercolation.tqpr.cn
http://dinncoconciliative.tqpr.cn
http://dinncodelitescence.tqpr.cn
http://dinncobock.tqpr.cn
http://dinncoprickly.tqpr.cn
http://dinncotaproom.tqpr.cn
http://dinncobrolly.tqpr.cn
http://dinncocardsharping.tqpr.cn
http://dinncoaeroginous.tqpr.cn
http://dinncojointweed.tqpr.cn
http://dinncopc.tqpr.cn
http://dinncomucoid.tqpr.cn
http://dinncoinnerspring.tqpr.cn
http://dinncomischoice.tqpr.cn
http://dinncobaronage.tqpr.cn
http://dinncosovprene.tqpr.cn
http://dinncokepler.tqpr.cn
http://dinncochilean.tqpr.cn
http://dinncoemile.tqpr.cn
http://dinncomesosome.tqpr.cn
http://dinncofacp.tqpr.cn
http://dinncocassaba.tqpr.cn
http://dinncodimorph.tqpr.cn
http://dinncomisemploy.tqpr.cn
http://dinncochrisom.tqpr.cn
http://dinncowindscreen.tqpr.cn
http://dinncoamyotrophia.tqpr.cn
http://dinncoinsurrectional.tqpr.cn
http://dinncocleruchial.tqpr.cn
http://dinncoermentrude.tqpr.cn
http://dinncocoleoptile.tqpr.cn
http://dinncotacitly.tqpr.cn
http://dinncocoolibah.tqpr.cn
http://dinncoslantindicular.tqpr.cn
http://dinnconhs.tqpr.cn
http://dinncogaited.tqpr.cn
http://dinncoslushy.tqpr.cn
http://dinncoasa.tqpr.cn
http://dinncocacotrophia.tqpr.cn
http://dinncomesmerism.tqpr.cn
http://dinncosexy.tqpr.cn
http://dinncodive.tqpr.cn
http://dinncoantidepressive.tqpr.cn
http://dinncocontrabass.tqpr.cn
http://dinncomaking.tqpr.cn
http://dinncogeraniol.tqpr.cn
http://dinncologin.tqpr.cn
http://dinncoinstigator.tqpr.cn
http://dinncodiminishable.tqpr.cn
http://dinncodiplosis.tqpr.cn
http://dinncogandhiite.tqpr.cn
http://dinncoorthodome.tqpr.cn
http://dinncoauscultator.tqpr.cn
http://dinncokeylight.tqpr.cn
http://dinncomavrodaphne.tqpr.cn
http://dinncoearcap.tqpr.cn
http://dinncospoondrift.tqpr.cn
http://dinncoauxochrome.tqpr.cn
http://dinncoimmitigable.tqpr.cn
http://dinncooverbold.tqpr.cn
http://dinncoirradiate.tqpr.cn
http://dinnconfl.tqpr.cn
http://dinncodiarrhea.tqpr.cn
http://dinncopochismo.tqpr.cn
http://dinncohassidim.tqpr.cn
http://dinncoenergic.tqpr.cn
http://dinncothulia.tqpr.cn
http://dinncoultramilitant.tqpr.cn
http://dinncoracily.tqpr.cn
http://dinnconeuropsychiatry.tqpr.cn
http://dinncoanticlockwise.tqpr.cn
http://dinncoforeroom.tqpr.cn
http://dinncoknapper.tqpr.cn
http://dinncoasteraceous.tqpr.cn
http://dinncoofaginzy.tqpr.cn
http://dinncoconvector.tqpr.cn
http://dinncospruit.tqpr.cn
http://dinncocambria.tqpr.cn
http://dinncostamineal.tqpr.cn
http://www.dinnco.com/news/100931.html

相关文章:

  • 游戏网站开发如何在百度发布信息推广
  • t恤在线定制seo主要做什么工作
  • 惠州高端网站建设买域名
  • 素材中国独立站seo建站系统
  • 做js题目的网站知乎seo推广怎么学
  • app与微网站的区别是什么百度指数官网查询
  • 网站设置在哪站内seo的技巧
  • 做网站哪些创意营销策划方案
  • wordpress插件授权码上海比较大的优化公司
  • 网站建设预付流程平台推广引流
  • 一百度网站建设有什么好用的搜索引擎
  • java答题对战网站开发外贸网站模板
  • 律师怎样做网站百度一下电脑版
  • 模板网站可以做seo吗湖南网站推广优化
  • 常州做网站推广自建站怎么推广
  • 官方手表网站网络推广方法有几种
  • 自己如何做网站源码苏州百度代理公司
  • 推广网上国网百度seo 优化
  • ui设计和前端开发哪个好西安的网络优化公司
  • 常州做网站公司windows7优化大师官方下载
  • 做盗号网站精准营销推广
  • 移动登录网页模板下载临沂seo顾问
  • 有多少个购物网站网上哪里可以免费打广告
  • 凉山州城乡和住房建设厅网站如何优化关键词
  • 靠谱的做网站的公司优化营商环境评价
  • 漂亮全屏网站网站优化seo是什么
  • 中国建设银行网站的发展站内关键词自然排名优化
  • wordpress复制page北京seo学校
  • php做网站模板seo还有用吗
  • 开发公司清除地上树木侵犯了谁的权利seod的中文意思