Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlynch2 committed Sep 10, 2019
1 parent 99f0384 commit 216bb82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions R/nsurface.r
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
nsurface <- function(a, b, c, d) {
a <- seq(from = 1, to = a, by = d)
b <- seq(from = 1, to = b, by = d)
c <- seq(from = 1, to = c, by = d)
a <- seq(from = 0, to = a, by = d)
b <- seq(from = 0, to = b, by = d)
c <- seq(from = 0, to = c, by = d)
faces_xy <- expand.grid(x = a, y = b, z = c(min(c), max(c)))
faces_xz <- expand.grid(x = a, y = c(min(b), max(b)), z = c)
faces_yz <- expand.grid(x = c(min(a), max(a)), y = b, z = c)
surface <- unique(rbind(faces_xy, faces_xz, faces_yz))
return(surface)
}
}
2 changes: 1 addition & 1 deletion inst/QA3D/server/julia.r
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
showModal(modalDialog(title = "Loading Analytical environment...", easyClose = FALSE, footer = NULL))
showModal(modalDialog(title = "Loading analytical environment...", easyClose = FALSE, footer = NULL))
JV <- JuliaSetup(add_cores = detectCores()-1, libraries = TRUE, source = TRUE)
removeModal()

0 comments on commit 216bb82

Please sign in to comment.