Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
The aim of the project is to create an easy to use, lightweight, cross-browser, general purpose 3D library. The current builds only include a WebGL renderer but WebGPU (experimental), SVG and CSS3D renderers are also available in the examples.
Examples — Documentation — API Documentation
This code creates a scene, a camera, and a geometric cube, and it adds the cube to the scene. It then creates a WebGL
renderer for the scene and camera, and it adds that viewport to the document.body
element. Finally, it animates the cube within the scene for the camera.
To Install you can choose one from two method.
# install shell script
npm install -g @angular/cli
npm install ngx3js
node ./node_modules/ngx3js/bin/patch.js
npm install
# install by npm
npm install -g @angular/cli
npm install ngx3js
npm install three@0.134.0
npm install --save-dev @types/three@0.134.0
npm install gsap
npm install ammojs-typed
npm install lil-gui
npm install chroma-js
npm install --save-dev @types/chroma-js
npm install fs
npm install fs-web
# prettier format change
npx prettier --write src/**/*.json
npx prettier --write src/**/*.ts
npx prettier --write src/**/*.html
npx prettier --write src/**/*.scss
To use ngx3js have to import Ngx3JsModule in src/app/app.module.ts or some other place modle.ts
// src/app/app.module.ts
import { Ngx3JsModule } from 'ngx3js';
@NgModule({
....
imports: [..., Ngx3JsModule],
....
})
If you chhange assets in angular.json file must be setted!
// src/app/app.component.ts
import { ThreeUtil } from 'ngx3js';
export class AppComponent {
ngOnInit(): void {
// any where use ngx3js for just one time
ThreeUtil.setAssetUrl('assets/examples/');
}
}
// angular.json
{
.......
"projects": {
"your-project-name": {
......
"architect": {
"build": {
......
"options": {
"allowedCommonJsDependencies" : [
"ammojs-typed"
],
......
"assets": [
......
{
"glob": "**/*",
"input": "./node_modules/ngx3js/assets",
"output": "/assets/examples/"
}
......
],
......
},
......
},
......
}
}
},
......
}
// tsconfig.json
{
....
"compilerOptions": {
....
"paths": {
"fs": ["./node_modules/fs-web"]
},
.....
}
....
}
<!-- src/app/app.component.html -->
<div style="width: 700px; height: 500px; display: block; position: relative">
<ngx3js-renderer
[controlType]="'orbit'"
[controlOptions]="{
enablePan: false,
enableDamping: true,
minDistance: 10,
maxDistance: 500
}"
[statsMode]="0"
[antialias]="true"
[clearColor]="'0x000000'"
[shadowMapEnabled]="true"
>
<ngx3js-lookat [x]="0" [y]="0" [z]="0"></ngx3js-lookat>
<ngx3js-camera
[type]="'perspective'"
[fov]="40"
[near]="1"
[far]="1000"
[viewport]="true"
[x]="0"
[y]="0"
[width]="'100%'"
[height]="'100%'"
>
<ngx3js-position [x]="-50" [y]="0" [z]="50"></ngx3js-position>
</ngx3js-camera>
<ngx3js-scene #scene>
<ngx3js-light [type]="'AmbientLight'" [color]="'0x6688cc'"></ngx3js-light>
<ngx3js-light
[type]="'directional'"
[color]="'0xffffff'"
[intensity]="1"
[castShadow]="true"
>
<ngx3js-position [x]="-3" [y]="10" [z]="-10"></ngx3js-position>
</ngx3js-light>
<ngx3js-mesh>
<ngx3js-position [x]="0" [y]="0" [z]="0"></ngx3js-position>
<ngx3js-geometry
[type]="'Icosahedron'"
[radius]="20"
[detail]="2"
></ngx3js-geometry>
<ngx3js-material
[type]="'meshlambert'"
[color]="'0xffffff'"
[wireframe]="true"
></ngx3js-material>
</ngx3js-mesh>
<ngx3js-mesh>
<ngx3js-position [x]="0" [y]="0" [z]="0"></ngx3js-position>
<ngx3js-geometry
[type]="'TextGeometry'"
[text]="'Ngx3Js'"
[font]="'gentilis_regular'"
[size]="20"
[height]="5"
[center]="true"
></ngx3js-geometry>
<ngx3js-material
[type]="'meshlambert'"
[color]="'0xff0000'"
></ngx3js-material>
</ngx3js-mesh>
</ngx3js-scene>
</ngx3js-renderer>
</div>
Cloning the repo with all its history results in a ~2 GB download. If you don't need the whole history you can use the depth
parameter to significantly reduce download size.
git clone --depth=1 https://github.com/outmindkjg/ngx3js-module.git
FAQs
Angular & Javascript 3D library
The npm package ngx3js receives a total of 3 weekly downloads. As such, ngx3js popularity was classified as not popular.
We found that ngx3js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.