search for: mousemode

Displaying 4 results from an estimated 4 matches for "mousemode".

Did you mean: mousehole
2008 Mar 01
1
How to chain user mouse handlers in rgl
...---------------- library(rgl) r3dDefaults open3d() shade3d(cube3d(color=rep(rainbow(6),rep(4,6)))) btn3d <- function() { begin <- function(x, y) { # Add checking for key down later cat(x,y,"\n") # Forward to trackball (no easier way?) newhandler <- par3d("mouseMode") newhandler[1] <- "trackball" par3d(mouseMode = newhandler) } rgl.setMouseCallbacks(1, begin) } btn3d()
2009 Jul 31
0
New package for interactive brushing/cropping/deleting points from RGL : sculpt3d v 0.2
sculpt3d is a GTK+ toolbar that allows for more interactive control of a dataset inside the RGL plot window. Controls for simple brushing, highlighting, labeling, and mouseMode changes are provided by point-and-click rather than through the R terminal interface. More discussion and demo movie: http://www.scwn.net/2009/07/sculpt3d/ Package at: http://cran.r-project.org/web/packages/sculpt3d/index.html sculpt3d works with a subset of rgl's plot3d arguments, and contr...
2009 Jul 31
0
New package for interactive brushing/cropping/deleting points from RGL : sculpt3d v 0.2
sculpt3d is a GTK+ toolbar that allows for more interactive control of a dataset inside the RGL plot window. Controls for simple brushing, highlighting, labeling, and mouseMode changes are provided by point-and-click rather than through the R terminal interface. More discussion and demo movie: http://www.scwn.net/2009/07/sculpt3d/ Package at: http://cran.r-project.org/web/packages/sculpt3d/index.html sculpt3d works with a subset of rgl's plot3d arguments, and contr...
2008 Jan 26
2
scatterplot3d with categorical data
Dear users, I'm trying to produce a 3d bar plot but the x and y dimensions have categorical data -- so I only want 3 points on each axis. So I try: require(scatterplot3d) mymat<-data.frame( x=c(1,1,1,2,2,2,3,3,3), y=c(1,2,3,1,2,3,1,2,3), z=c(1,2,3,4,5,6,7,8,9)) scatterplot3d(mymat, type="h", lwd=5, pch=" ", xlab="xlabel",