<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hi Andreas,<div class=""><br class=""></div><div class="">That is clever!</div><div class=""><br class=""></div><div class="">I will follow this pattern in my app and post a comment in the parallel discussion going on at:</div><div class=""><br class=""></div><div class=""><a href="https://github.com/x3dom/x3dom/issues/708" class="">https://github.com/x3dom/x3dom/issues/708</a></div><div class=""><br class=""></div><div class="">Thanks!</div><div class=""><br class=""></div><div class="">-Mike<br class="">
<div><br class=""><blockquote type="cite" class=""><div class="">On Dec 17, 2019, at 11:41 AM, Andreas Plesch <<a href="mailto:andreasplesch@gmail.com" class="">andreasplesch@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class=""><a href="https://jsitor.com/embed/_CpK0lylL?html&result&light&" class="">https://jsitor.com/embed/_CpK0lylL?html&result&light&</a><br class=""><br class="">shows what I had in mind.<br class=""><br class="">Notice how the timesensor output is never routed directly to the<br class="">interpolator but goes through a script. It is a DOM script for x3dom<br class="">but presumably could be a x3d script as well.<br class=""><br class="">-Andreas<br class=""><br class="">On Tue, Dec 17, 2019 at 8:06 AM Andreas Plesch <andreasplesch@gmail.com> wrote:<br class=""><blockquote type="cite" class=""><br class="">Hi Mike,<br class=""><br class="">let me try. Since there is no way to directly set the fraction of the timesensor, I think you can only use it indirectly if you want to use it in combination with another control on the progress of an animation.<br class=""><br class="">Let's call the position on the slider progress. The idea would be to add the timesensor's fraction_changed to current progress when play is requested. To keep things simple it might be best set start time to now when play is pressed to start with a fraction of 0 to add.<br class=""><br class="">Then when the slider is dragged stop the time sensor and update progress by the sliders value.<br class=""><br class="">Then when dragging stops it would be probably easiest and least surprising if playing would pause until the play button is pressed again.<br class=""><br class="">The main point is that the timesensors time should not directly represent playing time or progress.<br class=""><br class="">I think that approach could work,<br class=""><br class="">Andreas<br class=""><br class="">---on the phone---<br class=""><br class=""><br class="">On Mon, Dec 16, 2019 at 11:36 AM Mike McCann <mccann@mbari.org> wrote:<br class=""><blockquote type="cite" class=""><br class="">I Andreas,<br class=""><br class="">I did get Vince’s suggestion of "InterpolatorNode.setFieldValue('set_fraction', ts_fraction)” to work. I will try your suggestion as well.<br class=""><br class="">Regarding your suggestion of resetting startTime after scrubbing, I assume that this might be meant to set the new fraction of the TimeSensor to the scrubbed value.<br class=""><br class="">However, this does not work for me. In fact, I can see no way to set a new fraction value for the TimeSensor when playing begins after scrubbing, given it’s specification:<br class=""><br class="">TimeSensor : X3DTimeDependentNode, X3DSensorNode {<br class="">  SFTime  [in,out] cycleInterval    1     (0,∞)<br class="">  SFBool  [in,out] enabled          TRUE<br class="">  SFBool  [in,out] loop             FALSE<br class="">  SFNode  [in,out] metadata         NULL  [X3DMetadataObject]<br class="">  SFTime  [in,out] pauseTime        0     (-∞,∞)<br class="">  SFTime  [in,out] resumeTime       0<br class="">  SFTime  [in,out] startTime        0     (-∞,∞)<br class="">  SFTime  [in,out] stopTime         0     (-∞,∞)<br class="">  SFTime  [out]    cycleTime<br class="">  SFTime  [out]    elapsedTime<br class="">  SFFloat [out]    fraction_changed<br class="">  SFBool  [out]    isActive<br class="">  SFBool  [out]    isPaused<br class="">  SFTime  [out]    time<br class="">}<br class=""><br class="">Am I missing something?<br class=""><br class="">-Mike<br class=""><br class="">On Dec 15, 2019, at 5:07 AM, Andreas Plesch <andreasplesch@gmail.com> wrote:<br class=""><br class="">Hi Joe,<br class=""><br class="">Thanks for the memory jog. I recall doing it this way in pure VRML.<br class=""><br class="">What I can?t figure out is how to ?route? the output of the HTML slider into X3DOM's Interpolators. Is there an attribute in the x3dom runtime that I can set?<br class=""><br class="">-Mike<br class=""><br class=""><br class="">Hi Mike,<br class=""><br class="">as in Vince's example, you should be able use the set_fraction field<br class="">of the interpolator as attribute.<br class="">InterpolatorNode.setAttribute('set_field', newValuefromSlider) should<br class="">work.<br class=""><br class="">It might work to use a timesensor's fraction_changed as an _offset_ to<br class="">the last position of the slider when the play button was pressed.<br class=""><br class="">This probably means that the startTime of the timesensor needs to be<br class="">reset to now each time playing begins after scrubbing.<br class=""><br class="">-Andreas<br class=""><br class="">On Dec 13, 2019, at 1:44 PM, Joseph D Williams <joedwil@earthlink.net> wrote:<br class=""><br class="">Hi Mike,<br class="">Same as to do a slider control in x3d?<br class="">You disconnect the TimeSensor and drive the Position and Orientation Interpolators with a number you derive from the slider, I think.<br class="">Joe<br class=""><br class="">From: Mike McCann <mailto:mccann@mbari.org><br class="">Sent: Friday, December 13, 2019 10:25 AM<br class="">To: x3dom mlist <mailto:x3dom-users@lists.sourceforge.net>; X3D Graphics public mailing list <mailto:x3d-public@web3d.org><br class="">Subject: [x3d-public] HTML slider and TimeSensor scrubbing behavior<br class=""><br class="">Hello,<br class=""><br class="">I have a TimeSensor that drives Position and Orientation Interpolators via ROUTEd fraction _changed and set_ events.<br class=""><br class="">The fraction_changed event out is also connected to an HTML slider (<input type=?range?>) via X3DOM?s onoutputchange() attribute.<br class=""><br class="">The HTML slider shows the progress of the animation, but I?d also like to use it to control the fraction of the animation, much like one can scrub through a video with a timeline slider.<br class=""><br class="">It seems that if I were able to set the fraction of the TimeSensor from the HTML slider I could achieve my goal, but there is not a set_fraction event in for it.<br class=""><br class="">Is there a best practice or any suggestions for how I may achieve my goal?<br class=""><br class="">Thanks in advance,<br class="">Mike<br class=""><br class="">P.S. Though my immediate need is to implement this in X3DOM, I?d think that this might be a common use case, so I?m cross-posting on x3d-public.<br class=""><br class="">--<br class="">Mike McCann<br class="">Software Engineer<br class="">Monterey Bay Aquarium Research Institute<br class="">7700 Sandholdt Road<br class="">Moss Landing, CA 95039-9644<br class="">Voice: 831.775.1769  Fax: 831.775.1736 http://www.mbari.org<br class=""><br class=""><br class="">_______________________________________________<br class="">x3d-public mailing list<br class="">x3d-public@web3d.org <mailto:x3d-public@web3d.org><br class="">http://web3d.org/mailman/listinfo/x3d-public_web3d.org <http://web3d.org/mailman/listinfo/x3d-public_web3d.org><br class=""><br class="">-------------- next part --------------<br class="">An HTML attachment was scrubbed...<br class="">URL: <http://web3d.org/pipermail/x3d-public_web3d.org/attachments/20191214/644683a6/attachment-0001.html><br class=""><br class="">------------------------------<br class=""><br class="">Message: 2<br class="">Date: Sat, 14 Dec 2019 16:44:12 -0500<br class="">From: "vmarchetti@kshell.com" <vmarchetti@kshell.com><br class="">To: Mike McCann <mccann@mbari.org><br class="">Cc: Joseph D Williams <joedwil@earthlink.net>, x3dom mlist<br class="">       <x3dom-users@lists.sourceforge.net>, X3D Graphics public mailing list<br class="">       <x3d-public@web3d.org><br class="">Subject: Re: [x3d-public] HTML slider and TimeSensor scrubbing<br class="">       behavior<br class="">Message-ID: <92904E9C-B23B-4B19-BE42-AA5F4F406C62@kshell.com><br class="">Content-Type: text/plain; charset="utf-8"<br class=""><br class="">Mike<br class=""><br class="">This sounds similar to a scene I worked on at http://www.kshell.com/pages/cmmpoc/index.html <http://www.kshell.com/pages/cmmpoc/index.html> . I've got three sliders feeding into 3 position interpolators,<br class="">Because I load my x3d as an external file I have to run a javascript after loading that looks through the DOM tree and finds those interpolators.<br class=""><br class="">But the relevant part for you I think, is to define a function which I call "moveInterpolator" and to set it as the handler for the 'oninput' method of the slider.<br class="">You can see it in the source html for page http://www.kshell.com/pages/cmmpoc/index.html <http://www.kshell.com/pages/cmmpoc/index.html><br class=""><br class="">Vince Marchetti<br class=""><br class=""><br class="">On Dec 14, 2019, at 4:29 PM, Mike McCann <mccann@mbari.org> wrote:<br class=""><br class="">Hi Joe,<br class=""><br class="">Thanks for the memory jog. I recall doing it this way in pure VRML.<br class=""><br class="">What I can?t figure out is how to ?route? the output of the HTML slider into X3DOM's Interpolators. Is there an attribute in the x3dom runtime that I can set?<br class=""><br class="">-Mike<br class=""><br class="">On Dec 13, 2019, at 1:44 PM, Joseph D Williams <joedwil@earthlink.net <mailto:joedwil@earthlink.net>> wrote:<br class=""><br class="">Hi Mike,<br class="">Same as to do a slider control in x3d?<br class="">You disconnect the TimeSensor and drive the Position and Orientation Interpolators with a number you derive from the slider, I think.<br class="">Joe<br class=""><br class="">From: Mike McCann <mailto:mccann@mbari.org><br class="">Sent: Friday, December 13, 2019 10:25 AM<br class="">To: x3dom mlist <mailto:x3dom-users@lists.sourceforge.net>; X3D Graphics public mailing list <mailto:x3d-public@web3d.org><br class="">Subject: [x3d-public] HTML slider and TimeSensor scrubbing behavior<br class=""><br class="">Hello,<br class=""><br class="">I have a TimeSensor that drives Position and Orientation Interpolators via ROUTEd fraction _changed and set_ events.<br class=""><br class="">The fraction_changed event out is also connected to an HTML slider (<input type=?range?>) via X3DOM?s onoutputchange() attribute.<br class=""><br class="">The HTML slider shows the progress of the animation, but I?d also like to use it to control the fraction of the animation, much like one can scrub through a video with a timeline slider.<br class=""><br class="">It seems that if I were able to set the fraction of the TimeSensor from the HTML slider I could achieve my goal, but there is not a set_fraction event in for it.<br class=""><br class="">Is there a best practice or any suggestions for how I may achieve my goal?<br class=""><br class="">Thanks in advance,<br class="">Mike<br class=""><br class="">P.S. Though my immediate need is to implement this in X3DOM, I?d think that this might be a common use case, so I?m cross-posting on x3d-public.<br class=""><br class="">--<br class="">Mike McCann<br class="">Software Engineer<br class="">Monterey Bay Aquarium Research Institute<br class="">7700 Sandholdt Road<br class="">Moss Landing, CA 95039-9644<br class="">Voice: 831.775.1769  Fax: 831.775.1736 http://www.mbari.org <http://www.mbari.org/><br class=""><br class=""><br class="">_______________________________________________<br class="">x3d-public mailing list<br class="">x3d-public@web3d.org <mailto:x3d-public@web3d.org><br class="">http://web3d.org/mailman/listinfo/x3d-public_web3d.org <http://web3d.org/mailman/listinfo/x3d-public_web3d.org><br class=""><br class="">_______________________________________________<br class="">x3d-public mailing list<br class="">x3d-public@web3d.org<br class="">http://web3d.org/mailman/listinfo/x3d-public_web3d.org<br class=""><br class=""><br class="">-------------- next part --------------<br class="">An HTML attachment was scrubbed...<br class="">URL: <http://web3d.org/pipermail/x3d-public_web3d.org/attachments/20191214/19fe265d/attachment.html><br class=""><br class="">------------------------------<br class=""><br class="">Subject: Digest Footer<br class=""><br class="">_______________________________________________<br class="">x3d-public mailing list<br class="">x3d-public@web3d.org<br class="">http://web3d.org/mailman/listinfo/x3d-public_web3d.org<br class=""><br class=""><br class="">------------------------------<br class=""><br class="">End of x3d-public Digest, Vol 129, Issue 16<br class="">*******************************************<br class=""><br class=""><br class=""><br class=""><br class="">--<br class="">Andreas Plesch<br class="">Waltham, MA 02453<br class=""><br class="">_______________________________________________<br class="">x3d-public mailing list<br class="">x3d-public@web3d.org<br class="">http://web3d.org/mailman/listinfo/x3d-public_web3d.org<br class=""><br class=""><br class=""></blockquote><br class=""><br class="">--<br class="">Andreas Plesch<br class="">Waltham, MA 02453<br class=""></blockquote><br class=""><br class=""><br class="">-- <br class="">Andreas Plesch<br class="">Waltham, MA 02453<br class=""></div></div></blockquote></div><br class=""></div></body></html>