{"id":18333461,"url":"https://github.com/ogrecave/ogre-pagedgeometry","last_synced_at":"2025-10-15T14:12:03.634Z","repository":{"id":47290762,"uuid":"109063690","full_name":"OGRECave/ogre-pagedgeometry","owner":"OGRECave","description":"Paged Geometry is a component for rendering of dense vegetation","archived":false,"fork":false,"pushed_at":"2025-08-28T16:53:37.000Z","size":12743,"stargazers_count":24,"open_issues_count":4,"forks_count":11,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-08-28T23:35:32.623Z","etag":null,"topics":["ogre3d","terrain-generation"],"latest_commit_sha":null,"homepage":"https://ogrecave.github.io/ogre-pagedgeometry/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"zlib","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OGRECave.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-10-31T23:37:44.000Z","updated_at":"2025-08-28T16:53:42.000Z","dependencies_parsed_at":"2024-11-05T19:58:22.138Z","dependency_job_id":"a8e15e2e-3363-468c-baf0-4394aebf9e4c","html_url":"https://github.com/OGRECave/ogre-pagedgeometry","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/OGRECave/ogre-pagedgeometry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGRECave%2Fogre-pagedgeometry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGRECave%2Fogre-pagedgeometry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGRECave%2Fogre-pagedgeometry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGRECave%2Fogre-pagedgeometry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OGRECave","download_url":"https://codeload.github.com/OGRECave/ogre-pagedgeometry/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OGRECave%2Fogre-pagedgeometry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279085179,"owners_count":26100015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-15T02:00:07.814Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ogre3d","terrain-generation"],"created_at":"2024-11-05T19:42:24.413Z","updated_at":"2025-10-15T14:12:03.628Z","avatar_url":"https://github.com/OGRECave.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction {#mainpage}\n\nAlthough the PagedGeometry engine is fairly simple and easy to use, there are some\nadvanced features that may be difficult to learn on you own. This API reference is here\nfor your convenience, to aid you in learning how to get the most out of the PagedGeometry\nengine.\n\nEvery feature of the engine is covered here in detail, so you won't be left in the dark\nabout any aspect of PagedGeometry's use (however, some of the internal workings of the\nengine are not documented in here - you'll have to refer to the source code comments\nfor that).\n\n# What is PagedGeometry?\nThe PagedGeometry engine is an add-on to the \u003ca href=\"https://www.ogre3d.org\"\u003eOGRE\nGraphics Engine\u003c/a\u003e, which provides highly optimized methods for rendering massive amounts\nof small meshes covering a possibly infinite area. This is especially well suited for dense\nforests and outdoor scenes, with millions of trees, bushes, grass, rocks, etc., etc.\n\n![](docs/PagedGeometryScreen1.jpg)\n\nExpansive jungle scene with 240,000 trees and animated vegetation\n\nPaged geometry gives you many advantages over plain entities, the main one being speed:\nWith proper usage of detail levels, outdoor scenes managed by PagedGeometry can\nbe \u003e100x faster than plain entities. Another advantage is that the geometry is paged; in\nother words, only entities which are immediately needed (to be displayed) are loaded.\nThis allows you to expand the boundaries of your virtual world almost infinitely\n(only limited by floating point precision), providing the player with a more realistically\nscaled game area.\n\n# Features\n* Dynamic geometry paging system, which enables infinite worlds\n* Batched rendering for optimized rendering of near-by trees\n* Impostor rendering -LOD for extremely fast rendering of distant trees\n* Flexible -LOD display system, which can be expanded to display geometry with any technique you can implement\n* Flexible -LOD configuration system, which allows you to configure any combination of supported LODs in any way you want\n* Optional cross-LOD fade transitions, and far -LOD fade-out, fully configurable\n* Flexible PageLoader system, allowing you to dynamically load geometry from any source you can imagine\n* Easy addition / removal of trees with bit packing, allowing millions of trees to be stored in RAM using only a few MBs\n* Color-map support for trees, which enables you to apply terrain lightmaps to your trees with one simple function call\n* Animated, optimized grass rendering system. Supports density maps, color maps, wind animations, height range restriction, and much more.\n\n# Getting Started\n\nYour first stop is going to be @ref building-pageom.\n\nWhen you're ready to start learning how to use PagedGeometry, the best place to start is\nwith @ref tut1. The tutorials will teach you how to use many\nimportant PagedGeometry features, step by step. This API reference isn't recommended\nfor learning, but is a valuable resource when you need specific in-depth information\nabout a certain function or class.\n\n\n# Credits\n\n\u003cul\u003e\n\u003cli\u003e\u003cb\u003eJohn Judnich\u003c/b\u003e - \u003ci\u003eProgramming / design / documentation\u003c/i\u003e\u003c/li\u003e\n\u003cli\u003e\u003cb\u003eAlexander Shyrokov\u003c/b\u003e (aka. sj) - \u003ci\u003eTesting / co-design\u003c/i\u003e\u003c/li\u003e\n\u003cli\u003e\u003cb\u003eTuan Kuranes\u003c/b\u003e - \u003ci\u003eImposter image render technique\u003c/i\u003e\u003c/li\u003e\n\u003cli\u003e\u003cb\u003e(Falagard)\u003c/b\u003e - \u003ci\u003eCamera-facing billboard vertex shader\u003c/i\u003e\u003c/li\u003e\n\u003cli\u003e\u003cb\u003eWendigo Studios\u003c/b\u003e - \u003ci\u003eTree animation code \u0026 various patches/improvements\u003c/i\u003e\u003c/li\u003e\n\u003cli\u003e\u003cb\u003eThomas Fischer\u003c/b\u003e - \u003ci\u003eMaintainer from Jun/2009\u003c/i\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\n\n# License\n\u003cb\u003eCopyright (c) 2007 John Judnich\u003c/b\u003e\n\n\u003ci\u003e\nThis software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.\nPermission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:\n\n\u003cb\u003e1.\u003c/b\u003e The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.\n\n\u003cb\u003e2.\u003c/b\u003e Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\n\n\u003cb\u003e3.\u003c/b\u003e This notice may not be removed or altered from any source distribution.\n\u003c/i\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fogrecave%2Fogre-pagedgeometry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fogrecave%2Fogre-pagedgeometry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fogrecave%2Fogre-pagedgeometry/lists"}