Skip to content

Commit

Permalink
start viz webxr post
Browse files Browse the repository at this point in the history
  • Loading branch information
dancingfrog committed Jan 8, 2025
1 parent 59c05e5 commit 0cb337f
Show file tree
Hide file tree
Showing 26 changed files with 15,060 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ next-env.d.ts
*_cache/
*_site/
/content/*/data
/content/posts/proj-fcc-report
renv/
venv/
*.bak
Expand Down
2 changes: 1 addition & 1 deletion content/posts/visualize-r.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Visualizing R Data with SveltR'
title: 'Visualizing data with Svelte/R'
author: 'John Hall'
date: '2020-03-14'
draft: false
Expand Down
45 changes: 45 additions & 0 deletions content/posts/visualize-webxr.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: 'Visualizing data with WebXR'
author: 'John Hall'
date: '2020-03-14'
draft: false
categories:
- GL
tags:
- GL
- SvelteJS
- SvelteGL
- WebGL
format:
gfm:
variant: +yaml_metadata_block
---

<div id="vizr-app" role="main" style="width: 100%; min-width: 800px; margin-left: -86px;">
&nbsp;
</div>


## Visualizing data with WebXR

```{r setup, include=FALSE}
options(warn = -1)
working_dir <- getwd()
print(working_dir)
if (!require("knitr")) {
install.packages("knitr")
library("knitr")
}
knitr::opts_chunk$set(cache = TRUE)
knitr::opts_chunk$set(echo = TRUE)
if (!require("png")) {
install.packages("png")
}
library(png)
if (!require("jsonlite")) {
install.packages("jsonlite")
}
library(jsonlite)
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"lint": "next lint",
"next": "next",
"preview": "quarto preview",
"render:markdown": "cd content && quarto render README.qmd --to gfm --output index.md && npm run render:about && npm run render:dev && npm run render:posts",
"render:markdown": "cd content && quarto render README.qmd --to gfm --output index.md && npm run render:about && npm run render:dev && npm run render:posts && bash -c \"cd ../ && ls -l ./ && if [ -d site_libs ]; then cp -LR site_libs public/ && rm -rf site_libs;fi && if [ -f search.json ]; then rm search.json;fi\"",
"render:about": "cd content/about && quarto render index.qmd --to gfm --output index.md --output-dir .",
"render:dev": "cd content/dev && quarto render --output-dir . && quarto render index.qmd --to gfm --output README.md --output-dir .",
"render:js-demos": "bash -c \"cd content/js-demos && quarto render --output-dir . && quarto render index.qmd --to gfm --output README.md --output-dir . && quarto render index.qmd --to html --output index.html --output-dir . && cd ../../ && ls -l ./ && cp -LR site_libs public/ && rm -rf site_libs && rm search.json\"",
Expand Down
1 change: 1 addition & 0 deletions public/site_libs/crosstalk-1.2.1/css/crosstalk.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0cb337f

Please sign in to comment.