Austen Bolitho

Results 16 comments of Austen Bolitho

This is extremely annoying. I made a stack exchange post where this [issue is evident](https://stackoverflow.com/questions/55539395/size-of-cones-in-3d-animated-cone-plot-with-variable-animation-speed). The docstring for sizeref in `cone/attributes.js` states: > 'Adjusts the cone size scaling.', > 'The...

> > 'This factor (computed internally) corresponds to the minimum "time" to travel across', > > 'two successive x/y/z positions at the average velocity of those two successive positions.', >...

@etpinard From the linked stackexchange post: ``` import numpy as np import plotly.graph_objs as go import plotly.offline as pl ###np.around used because plotly.js doesn't like full precision float64s t =...

@etpinard One thing that would really help is if I knew how plotly interfaces with gl-vis. As far as i can see they are completely separate packages so I still...

I have recreated the problem using plotly.js without the python interface ``` #cone_data.py """outputs csv data to be plotted""" import numpy as np import pandas as pd decimals=2 t =...

@CarlAndersson I have uploaded a fix for Plotly.py that disables the autoscaling so that the cone size is constant and specified by `sizeref`. Just pull from [my repo](https://github.com/TakodaS/plotly.py). I am...

@msntag Take a look at `plotly.py/plotly/package_data/`. This folder contains the underlying js code that runs plotly. You will see a file plotly.min.js. This is a compressed version of the file...

[This blog](https://mt236.wordpress.com/2016/03/26/using-three-js-to-render-to-svg/) looks like a possible lead. EDIT: The package Plotly.js has an interesting function `plotly.js/src/snapshot/tosvg.js` that I am looking at now. EDIT2: for completeness, [here](http://blog.felixbreuer.net/2014/08/05/using-threejs-to-create-vector-graphics-from-3d-visualizations.html) is how to get...

Just wondering if this is related to a problem I am having. I want to delete all citations in a latex document and use ```python for elt, path in pandoc.iter(doc,...

@Pratyush Should I bother implementing `CryptographicSponge` for the Fiat-Shamir hash function found in `rng` or should I rip this all out in favour of Poseidon? Edit: I see something similar...