Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (9.9%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: d-k-ivanov
  • License: mit
  • Language: C++
  • Default Branch: main
  • Size: 47.6 MB
Statistics
  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 2 years ago · Last pushed over 1 year ago
Metadata Files
Readme License Citation

README.md

Ray-Tracing Frameworks and Visualizers

Acknowledgments

My work is significantly inspired by:

Compilation: Windows

  • Install Visual Studio
  • Install Git
  • Install Vulkan SDK
  • Install VCPKG
  • Add VCPKG folder to PATH:

    • Option 1: Command Line tools

    bat REM Assuming that VCPKG cloned and bootstrapped in c:\src\vcpkg REM setx for the global environment, set for the local setx PATH c:\src\vcpkg;%PATH% set PATH c:\src\vcpkg;%PATH% - Option 2: PowerShell

    ```ps1

    Assuming that VCPKG cloned and bootstrapped in c:\src\vcpkg

    [Environment]::SetEnvironmentVariable("PATH", "c:\src\vcpkg;${PATH}", "Machine") Set-Item -Path Env:PATH -Value "c:\src\vcpkg;${PATH}" ``` - Option 3: Manually in System PropertiesEnvironment Variables

  • Run build.bat

  • Open build\ray-tracing.sln in Visual Studio to work with the source code

Compilation: Linux

  • Install Git
  • Install Vulkan SDK
  • Install VCPKG
  • Add VCPKG folder to PATH:

    • Option 1: Temporary local environment

    ```bash

    Assuming that VCPKG cloned and bootstrapped in ~/vcpkg

    export PATH="~/vcpkg;${PATH}" ``` - Option 2: Local environment and Bash profile

    ```bash

    Assuming that VCPKG cloned and bootstrapped in c:\src\vcpkg

    export PATH="~/vcpkg;${PATH}" echo 'export PATH="~/vcpkg;${PATH}"' >> ~/.bashrc ``` - Important Note: the VCPKG requests installation of additional packages

  • Run build.sh

References

Owner

  • Name: Dmitry Ivanov
  • Login: d-k-ivanov
  • Kind: user
  • Location: España
  • Company: @ClearCorrect

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Ivanov"
  given-names: "Dmitry"
  orcid: "https://orcid.org/0000-0003-1763-1522"
title: "Ray-Tracing Framework"
version: 1.0.0
date-released: 2024-09-18
url: "https://github.com/d-k-ivanov/ray-tracing"

GitHub Events

Total
  • Watch event: 1
  • Push event: 4
Last Year
  • Watch event: 1
  • Push event: 4

Dependencies

vcpkg.json vcpkg
  • glfw3 *
  • glm *
  • imgui *
  • spdlog *
  • stb *
  • vulkan *