James Lindsay

Results 58 comments of James Lindsay

After the build process, do you have a `graphite/frontend/wasm/pkg` containing a wasm file? Do you have a `graphite/frontend/dist` folder? Or perhaps a `target/wasm32-unknown-unknown/release` folder? Could you elaborate on what you...

I disagree that we should discard the forwards and backwards buttons as you previously mentioned that they should be used for undoing changes in selection @Keavon. I can trivially reproduce...

I'm not sure you understand that I'm referring to mouse buttons (i.e. buttons on the mouse). These are not keyboard keys and thus should not be classified as such. As...

No javascript required, the widgets are defined in `select_tool.rs:174` @nico-mayora. An example of a checkbox in a popover widget is the snapping options defined in `document_message_handler.rs:1147`.

@CheeksTheGeek You'll want to look in `editor/src/messages/portfolio/document/overlays/overlays_message_handler.rs`.

As far as I can tell (please include the actual panic message in future) this is probably from failing to inverse a transform matrix containing 0 in debug mode? We...

@quarmin This is because your file contains a `U+009A | Single Character Intro Introducer` which cosmic text does not insert because it is a unicode control character: > Refusing to...

@Keavon currently you can snap a point to one of the previous segments in the path assuming it isn't one of the adjacent segments to the one you are moving....

That is correct in the current main branch @Tiger3018, however @Keavon is currently reversing the ordering of those inputs (I'm unsure why) in a branch in someone's fork. For documentation...

@Kakapio creating a convex hull from points is [reasonably well explored](https://en.wikipedia.org/wiki/Convex_hull_algorithms) e.g. [gift wrap algorithm](https://en.wikipedia.org/wiki/Gift_wrapping_algorithm).