🚀 DAY 2 OF LAUNCH WEEK: Unify Your Security Stack with Socket Basics.Learn more →
Socket
Book a DemoInstallSign in
Socket

@arizeai/point-cloud

Package Overview
Dependencies
Maintainers
7
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arizeai/point-cloud

A point cloud library for visualizing point clouds using 2D and 3D canvases.

latest
Source
npmnpm
Version
4.1.0
Version published
Maintainers
7
Created
Source

point-cloud

NPM Version

A point cloud library for visualizing point clouds using 2D and 3D canvases.

Installation

# or pnpm, yarn, etc
npm install @arizeai/point-cloud @react-three/drei

Usage

Basic usage:

import { ThreeDimensionalCanvas, ThreeDimensionalControls, Points, type PointBaseProps } from '@arizeai/point-cloud';

const data: PointBaseProps[] = [
  { position: [0, 0, 0], metaData: {} },
  { position: [1, 1, 1], metaData: {} },
];

export const PointCloud = () => {
  return (
    <ThreeDimensionalCanvas>
      <ThreeDimensionalControls />
      <Points data={data} pointProps={{ color: '#7BFFFF' }} />
    </ThreeDimensionalCanvas>
  );
};

See additional usage examples in Storybook.

npm run storybook

Usage with React 19

React 19 is not yet supported by stable versions of @react-three/drei. To use this library with React 19, you can try the following:

npm install @arizeai/point-cloud @react-three/drei@alpha

Keywords

point-cloud

FAQs

Package last updated on 03 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts