Hscript
1 program
Added 2026-03-13T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: HScript, Houdini Script
Provenance: commit 719a823ac9 · authored 2026-03-13T08:38:17+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/hscriptRelated languages
LLM-contributed programs
Scene Setup with Multiple Spheres
Provenance: commit 719a823ac9 · authored 2026-03-13T08:38:17+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# Hscript: Set up a simple scene with animated objects
set -g SCENE_NAME = "animation_test"
# Navigate to object level
opcf /obj
# Create first sphere object
opadd geo sphere_low
opparm sphere_low tx(-3) ty(0) tz(0)
# Create second sphere object
opadd geo sphere_mid
opparm sphere_mid tx(0) ty(2) tz(0)
# Create third sphere object
opadd geo sphere_high
opparm sphere_high tx(3) ty(4) tz(0)
# Create sphere geometry inside each container
opcf /obj/sphere_low
opadd sphere sphere1
opparm sphere1 rad(0.5, 0.5, 0.5)
opcf /obj/sphere_mid
opadd sphere sphere1
opparm sphere1 rad(0.75, 0.75, 0.75)
opcf /obj/sphere_high
opadd sphere sphere1
opparm sphere1 rad(1.0, 1.0, 1.0)
opcf /obj
echo "Scene '$SCENE_NAME' built with 3 spheres"
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)