npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jthreebsp

v1.0.0

Published

Three.js工具类库,可以进行模型的交集、并集、差集,开发测试使用Three.js版本使用的是r126,不保证其他版本可用(对旧版使用Geometry的已经不支持,支持使用BufferGeometry)

Downloads

13

Readme

说明

本项目基于 fox19920726threebsp 进行修改,感谢原作者开源的代码。四年以前一直使用 Three.js 进行 web 3D 展示的开发工作,弄了两年,后来就没怎么用过了,最近正好又要用一下,发现变化还不小,以前的写的一些库已经不适用于新版的 Three.js 了,百度查资料才知道了 ThreeBSP 这个库,之前都是部门内自己开发各种库,都不知道还有这种开源神器,不过用的时候发现跑不起来,一看 github 有一段时间没更新了,自己看源码发现新版本的 Geometry 基本上废弃了,都是使用 BufferGeometry 了,但是 threebsp 还没进行相关代码的更新,只能自己改造一下,也是很久没研究了,相关知识忘得差不多了,简单修改了一下,基本上能运行了,肯定还有很多有不足的地方,欢迎各位大神进行优化修改。

模块化 ThreeBSP 包

Vue 中的用法(react 暂时不做示例)

安装 Threebsp 包(因为发布到 npm 时包名不能和之前相同,所以发布时改了下名字,叫 jthreebsp)

npm install jthreebsp

必须在前面先引入 THREE 包

import * as THREE from 'three'

再把 THREE 当作参数传入方可使用

const ThreeBSP = require('jthreebsp')(THREE)

案例

createMesh 方法

createMesh(geom) {
  //  创建一个线框纹理
  const wireFrameMat = new THREE.MeshBasicMaterial({
    opacity: 0.5,
    wireframeLinewidth: 0.5
  });
  wireFrameMat.wireframe = true;

  // 创建模型
  const mesh = new THREE.Mesh(geom, wireFrameMat);

  return mesh;
}

创建球形几何体

const sphereGeometry = new THREE.SphereGeometry(50, 20, 20)

const sphere = this.createMesh(sphereGeometry)

创建立方体几何体

const cubeGeometry = new THREE.BoxGeometry(30, 30, 30)

const cube = this.createMesh(cubeGeometry)

cube.position.x = -50

生成 ThreeBSP 对象

const sphereBSP = new ThreeBSP(sphere)

const cubeBSP = new ThreeBSP(cube)

以下计算方式取其一即可

进行差集计算(使用该函数可以在第一个几何体中移除两个几何体重叠的部分来创建新的几何体。)

const resultBSP = sphereBSP.subtract(cubeBSP)

进行并集计算(使用该函数可以将两个几何体联合起来创建出一个新的几何体。)

const resultBSP = sphereBSP.union(cubeBSP)

进行交集计算(使用该函数可以基于两个现有几何体的重合的部分定义此几何体的形状。)

const resultBSP = sphereBSP.intersect(cubeBSP)

从 BSP 对象内获取到处理完后的 mesh 模型数据

const result = resultBSP.toMesh()

更新模型的面和顶点的数据

result.geometry.computeFaceNormals()

result.geometry.computeVertexNormals()

重新赋值一个纹理

const material = new THREE.MeshPhongMaterial({ color: 0x00ffff })

result.material = material

将计算出来模型添加到场景当中

this.scene.add(result)