{"id":"dolphin.projection3d--dolphinOrthoCamera","name":"dolphinOrthoCamera","owner":"dolphin","package":"dolphin.projection3d","kind":"thing","signature":"external thing dolphinOrthoCamera","description":"A dolphin ortho camera record carrying valid, focus, cyaw, syaw, cpitch, and related state.","context":"Project 3D points into an orthographic 2D view with an inspectable camera.","parameters":[],"returns":"void","members":[{"name":"valid","kind":"field","type":"bool","description":"Stores valid as bool.","signature":"bool valid","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"focus","kind":"field","type":"Vector3","description":"Stores focus as Vector3.","signature":"Vector3 focus","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"cyaw","kind":"field","type":"float","description":"Stores cyaw as float.","signature":"float cyaw","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"syaw","kind":"field","type":"float","description":"Stores syaw as float.","signature":"float syaw","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"cpitch","kind":"field","type":"float","description":"Stores cpitch as float.","signature":"float cpitch","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"spitch","kind":"field","type":"float","description":"Stores spitch as float.","signature":"float spitch","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"scale","kind":"field","type":"float","description":"Stores scale as float.","signature":"float scale","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"cx","kind":"field","type":"float","description":"Stores cx as float.","signature":"float cx","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"cy","kind":"field","type":"float","description":"Stores cy as float.","signature":"float cy","tags":["thing","field","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"dolphinOrthoCamera","kind":"constructor","parameters":[{"name":"focus","type":"Vector3","description":"Focus."},{"name":"yaw","type":"float","description":"Yaw."},{"name":"pitch","type":"float","description":"Pitch."},{"name":"scale","type":"float","description":"Scale."},{"name":"cx","type":"float","description":"Cx."},{"name":"cy","type":"float","description":"Cy."}],"returns":"void","signature":"dolphinOrthoCamera(Vector3 focus,float yaw,float pitch,float scale,float cx,float cy)","description":"Dolphin ortho camera.","tags":["thing","constructor","dolphin.projection3d"],"updated":"2026-09-09"},{"name":"Project","kind":"method","parameters":[{"name":"point","type":"Vector3","description":"Point."}],"returns":"dolphinProjection","signature":"Project(Vector3 point) returns dolphinProjection","description":"Project.","tags":["thing","method","dolphin.projection3d"],"exampleId":"method-Project-10","updated":"2026-09-09"},{"name":"Facing","kind":"method","parameters":[{"name":"normal","type":"Vector3","description":"Normal."}],"returns":"float","signature":"Facing(Vector3 normal) returns float","description":"Facing.","tags":["thing","method","dolphin.projection3d"],"exampleId":"method-Facing-11","updated":"2026-09-09"}],"tags":["cpu","dolphin","dolphin.projection3d","method","projection3d","source-example","thing"],"updated":"2026-09-09","source":{"repository":"dolphin","path":"packages/projection3d/src/projection.yh","line":38,"sha256":"3d682e17886dc939ed3fe3eae3c10484a64e939a5529ad13300665d270e56040"},"status":"source-declared","notes":["Package presence and a declaration do not establish support on every host. Host services need their platform and lifecycle setup."],"examples":[{"id":"usage","title":"Use dolphinOrthoCamera","description":"A complete small caller. Values are illustrative; check the returned result and package requirements before connecting live resources.","code":"using dolphin.projection3d\n\n// Project 3D points into an orthographic 2D view with an inspectable camera.\ndolphinOrthoCamera sample = dolphinOrthoCamera(Vector3(1.0, 1.0, 1.0), 1.0, 1.0, 1.0, 1.0, 1.0)\nConsole.Log(Text.From(sample.valid))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.dolphin_projection3d__dolphinorthocamera\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"dolphin.math\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/math\"\n\n[[dependencies]]\npackage = \"dolphin.projection3d\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/projection3d\"\n\n[[dependencies]]\npackage = \"dolphin.spatial3d\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/spatial3d\"\n","tags":["cpu","source-example"],"verification":"type checked","run":"cpu-oracle","sha256":"17ccaaa48a5fc868624ff3bd47a79e2e5ae2aacd354076ed41315aa8f486d4d1","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-Project-10","title":"dolphinOrthoCamera.Project","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using dolphin.projection3d\n\n// Project.\ndolphinOrthoCamera instance = dolphinOrthoCamera(Vector3(1.0, 1.0, 1.0), 1.0, 1.0, 1.0, 1.0, 1.0)\nVector3 argument_point = Vector3(1.0, 1.0, 1.0)\ndolphinProjection result = instance.Project(argument_point)\nConsole.Log(\"Inspect result in your debugger\")\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.dolphin_projection3d__dolphinorthocamera\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"dolphin.math\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/math\"\n\n[[dependencies]]\npackage = \"dolphin.projection3d\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/projection3d\"\n\n[[dependencies]]\npackage = \"dolphin.spatial3d\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/spatial3d\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"cd6af81e335454b6000f6ec7d4beac5e00a4fc8321deae7c2889cfebeaf8e948","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null},{"id":"method-Facing-11","title":"dolphinOrthoCamera.Facing","description":"A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.","code":"using dolphin.projection3d\n\n// Facing.\ndolphinOrthoCamera instance = dolphinOrthoCamera(Vector3(1.0, 1.0, 1.0), 1.0, 1.0, 1.0, 1.0, 1.0)\nVector3 argument_normal = Vector3(1.0, 1.0, 1.0)\nfloat result = instance.Facing(argument_normal)\nConsole.Log(Text.From(result))\n","manifest":"manifestVersion = \"2\"\npackage = \"api.example.dolphin_projection3d__dolphinorthocamera\"\nversion = \"0.1.0\"\nlanguageEdition = \"yeho-core-2026.1\"\n\n[app]\nkind = \"headless\"\n\n[[dependencies]]\npackage = \"dolphin.math\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/math\"\n\n[[dependencies]]\npackage = \"dolphin.projection3d\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/projection3d\"\n\n[[dependencies]]\npackage = \"dolphin.spatial3d\"\nversion = \"0.1.0\"\npath = \"../../../dolphin/packages/spatial3d\"\n","tags":["cpu","method","source-example"],"run":"cpu-oracle","verification":"type checked","sha256":"a270ea5fdbf07be4d0ab8ede3d55519ddca0fb6f661ca6df6679508902efbbb2","checked":"2026-09-09","diagnostic":"","observedOutput":null,"checkedBackend":null}],"searchTerms":["valid","focus","cyaw","syaw","cpitch","spitch","scale","cx","cy","dolphinOrthoCamera","Project","Facing"],"url":"https://demonhunterlabs.com/academy/api?item=dolphin.projection3d--dolphinOrthoCamera","json":"https://demonhunterlabs.com/reference/items/dolphin.projection3d--dolphinOrthoCamera.json","markdown":"https://demonhunterlabs.com/reference/text/dolphin.projection3d--dolphinOrthoCamera.md"}
