bufferGeometry setFromPoints с реагировать три волокна - PullRequest
0 голосов
/ 19 сентября 2019

Учитывая toLinePath функцию:

const toLinePath = (arrayOfPoints, color = 0x000000) => {
  const path = new THREE.Path();
  const firstPoint = arrayOfPoints[0];

  path.moveTo(firstPoint.x, firstPoint.y, firstPoint.z);
  arrayOfPoints.forEach(point => path.lineTo(point.x, point.y, point.z));
  path.closePath();

  const points = path.getPoints();
  const geometry = new THREE.BufferGeometry().setFromPoints(points);
  const material = new THREE.LineBasicMaterial({ color });
  const line = new THREE.Line(geometry, material);
  return line;
};

Я хочу воссоздать его, используя react-three-fiber и пытался что-то вроде этого:

import React from 'react'
import * as THREE from 'three'
import ReactDOM from 'react-dom'
import { Canvas } from 'react-three-fiber'

function LinePath(props) {
  const vertices = React.useMemo(() => {
    const path = new THREE.Path()
    const firstPoint = props.vertices[0]

    path.moveTo(firstPoint.x, firstPoint.y, firstPoint.z)
    props.vertices.forEach(point => path.lineTo(point.x, point.y, point.z))
    path.closePath()

    return path.getPoints()
  }, [props.vertices])

  return (
    <line>
      <bufferGeometry attach="geometry" setFromPoints={vertices} />
      <lineBasicMaterial attach="material" color="black" />
    </line>
  )
}


ReactDOM.render(
  <Canvas>
    <LinePath vertices={[new THREE.Vector3(0, 0, 0), new THREE.Vector3(2, 2, 0), new THREE.Vector3(-2, 2, 0)]} />
  </Canvas>,
  document.getElementById('root')
)

Нонет вывода / ошибки вообще.Я полагаю, я совершенно не понял API react-three-fiber.Что я здесь не так делаю?Спасибо и вот песочница

1 Ответ

0 голосов
/ 19 сентября 2019

Так что я на самом деле понял это.Я искал хук useUpdate, который позволяет нам вызывать методы любого заданного ref.Вот что нужно сделать:

import { Canvas, useUpdate } from 'react-three-fiber'

function LinePath(props) {
  const vertices = ...

  const ref = useUpdate(geometry => {
    geometry.setFromPoints(vertices)
  }, [])

  return (
    <line>
      <bufferGeometry attach="geometry" ref={ref} />
      ...
    </line>
  )
}
...