Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@shapediver/sdk.sdtf-geometry
Advanced tools
The Structured Data Transfer Format (sdTF) is an API-neutral exchange and storage format for trees of data items as used by parametric 3D modeling software like Grasshopper®. This open, efficient, and easily extensible data format enables the exchange of complex data structures, independent of software vendors. See the sdTF documentation for more details.
The aim of this package is to extend the sdTF-v1 module to provide processing and typing functionality for geometric data.
It can be used in Node.js and modern Browsers, and exposes the respective TypeScript declarations.
npm i @shapediver/sdk.sdtf-v1 @shapediver/sdk.sdtf-geometry
This package is a plugin for the sdTF-v1 module and cannot be used by itself.
This code initializes the SDK and registers the integration for geometry types. After this step, the integration is fully included in all reading and writing processes of the SDK instance.
// index.ts
import { create, SdtfSdk } from "@shapediver/sdk.sdtf-v1"
import { SdtfGeometryTypeIntegration } from "@shapediver/sdk.sdtf-geometry"
(async () => {
const sdk: SdtfSdk = await create({
integrations: [ new SdtfGeometryTypeIntegration() ]
})
// Use the sdk here
})()
The following table lists all type hints that are supported by this integration, their specific TypeScript types, and the provided type guard functions that can be used to infer a data content type.
Type hint name | TypeScript type | Type guard |
---|---|---|
"geometry.arc" or SdtfGeometryTypeHintName.GEOMETRY_ARC | SdtfGeometryArcType | SdtfGeometryTypeHintName.assertArc SdtfGeometryTypeHintName.isArc |
"geometry.boundingbox" or SdtfGeometryTypeHintName.GEOMETRY_BOUNDING_BOX | SdtfGeometryBoundingBoxType | SdtfGeometryTypeHintName.assertBoundingBox SdtfGeometryTypeHintName.isBoundingBox |
"geometry.box" or SdtfGeometryTypeHintName.GEOMETRY_BOX | SdtfGeometryBoxType | SdtfGeometryTypeHintName.assertBox SdtfGeometryTypeHintName.isBox |
"geometry.circle" or SdtfGeometryTypeHintName.GEOMETRY_CIRCLE | SdtfGeometryCircleType | SdtfGeometryTypeHintName.assertCircle SdtfGeometryTypeHintName.isCircle |
"geometry.complex" or SdtfGeometryTypeHintName.GEOMETRY_COMPLEX | SdtfGeometryComplexType | SdtfGeometryTypeHintName.assertComplex SdtfGeometryTypeHintName.isComplex |
"geometry.cone" or SdtfGeometryTypeHintName.GEOMETRY_CONE | SdtfGeometryConeType | SdtfGeometryTypeHintName.assertCone SdtfGeometryTypeHintName.isCone |
"geometry.cylinder" or SdtfGeometryTypeHintName.GEOMETRY_CYLINDER | SdtfGeometryCylinderType | SdtfGeometryTypeHintName.assertCylinder SdtfGeometryTypeHintName.isCylinder |
"geometry.ellipse" or SdtfGeometryTypeHintName.GEOMETRY_ELLIPSE | SdtfGeometryEllipseType | SdtfGeometryTypeHintName.assertEllipse SdtfGeometryTypeHintName.isEllipse |
"geometry.interval" or SdtfGeometryTypeHintName.GEOMETRY_INTERVAL | SdtfGeometryIntervalType | SdtfGeometryTypeHintName.assertInterval SdtfGeometryTypeHintName.isInterval |
"geometry.interval2" or SdtfGeometryTypeHintName.GEOMETRY_INTERVAL2 | SdtfGeometryInterval2Type | SdtfGeometryTypeHintName.assertInterval2 SdtfGeometryTypeHintName.isInterval2 |
"geometry.line" or SdtfGeometryTypeHintName.GEOMETRY_LINE | SdtfGeometryLineType | SdtfGeometryTypeHintName.assertLine SdtfGeometryTypeHintName.isLine |
"geometry.matrix" or SdtfGeometryTypeHintName.GEOMETRY_MATRIX | SdtfGeometryMatrixType | SdtfGeometryTypeHintName.assertMatrix SdtfGeometryTypeHintName.isMatrix |
"geometry.plane" or SdtfGeometryTypeHintName.GEOMETRY_PLANE | SdtfGeometryPlaneType | SdtfGeometryTypeHintName.assertPlane SdtfGeometryTypeHintName.isPlane |
"geometry.point" or SdtfGeometryTypeHintName.GEOMETRY_POINT | SdtfGeometryPointType | SdtfGeometryTypeHintName.assertPoint SdtfGeometryTypeHintName.isPoint |
"geometry.polyline" or SdtfGeometryTypeHintName.GEOMETRY_POLYLINE | SdtfGeometryPolylineType | SdtfGeometryTypeHintName.assertPolyline SdtfGeometryTypeHintName.isPolyline |
"geometry.ray" or SdtfGeometryTypeHintName.GEOMETRY_RAY | SdtfGeometryRayType | SdtfGeometryTypeHintName.assertRay SdtfGeometryTypeHintName.isRay |
"geometry.rectangle" or SdtfGeometryTypeHintName.GEOMETRY_RECTANGLE | SdtfGeometryRectangleType | SdtfGeometryTypeHintName.assertRectangle SdtfGeometryTypeHintName.isRectangle |
"geometry.sphere" or SdtfGeometryTypeHintName.GEOMETRY_SPHERE | SdtfGeometrySphereType | SdtfGeometryTypeHintName.assertSphere SdtfGeometryTypeHintName.assertSphere |
"geometry.torus" or SdtfGeometryTypeHintName.GEOMETRY_TORUS | SdtfGeometryTorusType | SdtfGeometryTypeHintName.assertTorus SdtfGeometryTypeHintName.isTorus |
"geometry.transform" or SdtfGeometryTypeHintName.GEOMETRY_TRANSFORM | SdtfGeometryTransformType | SdtfGeometryTypeHintName.assertTransform SdtfGeometryTypeHintName.isTransform |
"geometry.vector" or SdtfGeometryTypeHintName.GEOMETRY_VECTOR | SdtfGeometryVectorType | SdtfGeometryTypeHintName.assertVector SdtfGeometryTypeHintName.isVector |
Additionally, the type guard SdtfGeometryTypeHintName
provides functions to infer subtypes of SdtfGeometryPointType
and SdtfGeometryVectorType
:
typeGuard.assertPoint2d and typeGuard.isPoint2d:
Infer the subtype SdtfGeometryPoint2d
of SdtfGeometryPointType
.
typeGuard.assertPoint3d and typeGuard.isPoint3d:
Infer the subtype SdtfGeometryPoint3d
of SdtfGeometryPointType
.
typeGuard.assertPoint4d and typeGuard.isPoint4d:
Infer the subtype SdtfGeometryPoint4d
of SdtfGeometryPointType
.
typeGuard.assertVector2d and typeGuard.isVector2d:
Infer the subtype SdtfGeometryVector2d
of SdtfGeometryVectorType
.
typeGuard.assertVector3d and typeGuard.isVector3d:
Infer the subtype SdtfGeometryVector3d
of SdtfGeometryVectorType
.
This simple example reads a sdTF file and extracts the content of all data items. Every content data that is of a cylindrical or spherical type is scaled up and shown on the console.
// index.ts
import { create, SdtfSdk } from "@shapediver/sdk.sdtf-v1"
import { SdtfGeometryTypeIntegration, SdtfGeometryTypeGuard } from "@shapediver/sdk.sdtf-geometry"
(async () => {
const sdk: SdtfSdk = await create({
integrations: [ new SdtfGeometryTypeIntegration() ]
})
// Reads a sdTF file
const asset = await sdk.createParser().readFromFile("./test.sdtf")
// Process all data items with a cylindrical or spherical content
for (const dataItem of asset.items) {
const geometry = await dataItem.getContent() // load data content of type `unknown`
if (SdtfGeometryTypeGuard.isCylinder(geometry)) { // checks and infers the type to `SdtfGeometryCylinderType`
geometry.baseCircle.radius *= 5
}
else if (SdtfGeometryTypeGuard.isSphere(geometry)) { // checks and infers the type to `SdtfGeometrySphereType`
geometry.radius *= 7
}
else {
continue
}
console.log("The scaled geometry is", geometry) // Print out the scaled geometry information
}
})()
If you have questions, please use the ShapeDiver Help Center.
You can find out more about ShapeDiver right here.
This project is released under the MIT License.
FAQs
Extension containing sdTF geometry types
The npm package @shapediver/sdk.sdtf-geometry receives a total of 264 weekly downloads. As such, @shapediver/sdk.sdtf-geometry popularity was classified as not popular.
We found that @shapediver/sdk.sdtf-geometry demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.