Claudio Verdú Ruiz
Claudio Verdú Ruiz
Hello @fkromer, I haven't implemented it, but I had the same question and I think it is possible. There it goes my theorical approach: 1.- Given that you have both...
Hello @caiolopes, @fgmacedo, I have implemented this solution: ```python from graphviz import Digraph def plot_state_machine(state_machine, name='state_machine'): dg = Digraph(comment=name) for s in state_machine.states: for t in s.transitions: dg.edge(t.source.name, t.destinations[0].name) dg.render('folder/{}.gv'.format(name),...
Hello @hwerbi ! I think this should work (over the former snippet): ```python def plot_state_machine(state_machine, name='state_machine'): dg = Digraph(comment=name) for s in state_machine.states: for t in s.transitions: dg.edge(t.source.name, t.destinations[0].name, label=t.identifier)...
Hello @arseniy-panfilov, Maybe it's a bit late to come with a solution. Anyway, I don't know if I have understood correctly, but you want to check if a certain condition...
Hello @arseniy-panfilov, I needed a while to retake this issue, and I still don't know if I understood the problem nor if my solution is good. I think that what...
@Vincentqyw thank you for your contribution. I really appreciate the coordinate systems collection. I have been researching myself about this, finding: **COLMAP** https://colmap.github.io/format.html#images-txt Agreement with your contribution. **OpenGL/Blender (and NERF?)**...
it's been 2+ years since last comment, still this feature not implemented
@bmd3k I think it's going to be pretty hard to find people that need this feature and are also capable of developing it :) I've just taken a look and...
@bernardcooke53 - prerelease: `semantic-release publish --prerelease -D branch=$CI_COMMIT_BRANCH -D prerelease_tag=rc` - release: `semantic-release publish -D prerelease_tag=rc` - release conf (only for release not prerelease): ``` hvcs = "gitlab" upload_to_repository =...
@bernardcooke53 any updates on this?