Giter VIP home page Giter VIP logo

pbrtsceneconverter's Introduction

PbrtSceneConverter

Project that converts pbrt scene files into c++ classes => can be used to write an exporter to another scene format.

The project is configured as a console application that takes an input pbrt file, the output destination and some optional parameters. See Source/main.cpp for the description of all optional parameters.

To convert the PBRT c++ class to you own format, replace the // TODO convert to your own scene format here in main() with your converter.

The most important PBRT c++ classes are:

  • PbrtScene was used to build the Scene. Call getRenderOptions() to get the scene configuation.
  • RenderOptions:
struct RenderOptions
{
  Matrix cameraToWorld;
  SceneObject camera;
  Vector cameraPos;
  Vector cameraLookAt;
  SceneObject sampler;
  SceneObject film;
  SceneObject renderer;
  SceneObject surfaceIntegrator;
  SceneObject volumeIntegrator;
  SceneObject accelerator;
  SceneObject pixelFilter;
  std::vector<SceneObject> volumeRegions;
  std::vector<std::unique_ptr<Shape>> shapes;
  std::vector<Light> lights;
};
  • SceneObject. Used to describe the Camera, Renderer etc.
	struct SceneObject
	{
		std::string type;
		ParamSet set;
	};
  • ParamSet Dictionary to look up parameters. Example: If the Camera SceneObject has the type "perspective", you can use camera.set.getFloat("fov", 90.0f) to retrieve the fov. If the parameter was not set, 90.0f will be returned.

  • Shape: base class for all shapes. Implemented shapes are: Triangle and Sphere

  • Light

  • Material

pbrtsceneconverter's People

Contributors

kopaka1822 avatar igarfieldi avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.