omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. vignesh

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 5
    • Followers 0
    • Topics 5
    • Posts 34
    • Best 1
    • Controversial 0
    • Groups 0

    vignesh

    @vignesh

    3
    Reputation
    913
    Profile views
    34
    Posts
    0
    Followers
    5
    Following
    Joined Last Online

    vignesh Unfollow Follow

    Best posts made by vignesh

    • When will OMZ release an Xcode Template for Python3?

      Is it in the works? As soon as its available I'll be able to move forward on a lot of projects.

      posted in Pythonista
      vignesh
      vignesh

    Latest posts made by vignesh

    • RE: If, like me, your iDevice is too old for ARKit...

      @pulbrich awesome, thank you I'll check it out!

      posted in Pythonista
      vignesh
      vignesh
    • ARkit in Pythonista

      @cvp and @JonB and @Brun0oO have worked to adapt ARkit to Pythonista. I was wondering how able Pythonista is to handle code adapted from swift iOS tutorials into the ARkit sample code provided by @Brun0oO. I want to see if I am able to put an image on a surface using the AR framework in Pythonista, similar to this in swift:
      https://mobile-ar.reality.news/how-to/arkit-101-place-2d-images-like-painting-photo-wall-augmented-reality-0187598/

      posted in Pythonista
      vignesh
      vignesh
    • RE: If, like me, your iDevice is too old for ARKit...

      Thanks so much, @cvp this makes sense and I just tested it myself and it works

      posted in Pythonista
      vignesh
      vignesh
    • RE: If, like me, your iDevice is too old for ARKit...

      @JonB said:

      [4,4,4,4,4,4, # six faces, each has 4 sides
      0,3,2,1# bottom face
      1,2,6,5,# right face
      2,3,7,6# back face
      3,0, 4,7# left face
      0,1,5,4 # front face
      4,5,6,7]

      So I used the new index array you provided on the cube defined by these vertices:

          verts = [
          SCNVector3(0, 0, 0),
          SCNVector3(0.05, 0, 0),
          SCNVector3(0.05, 0, 0.05),
          SCNVector3(0, 0, 0.05),
          SCNVector3(0, 0.05, 0),
          SCNVector3(0.05, 0.05, 0),
          SCNVector3(0.05, 0.05, 0.05),
          SCNVector3(0, 0.05, 0.05)]
      

      and the result for me is triangles (covering half the face) instead of full square faces on the cube. Is there anything else I should change in cvp's original code to allow the new index array to work?

      posted in Pythonista
      vignesh
      vignesh
    • RE: If, like me, your iDevice is too old for ARKit...

      In this part of the code:

         indexes = [3,3,3,3,3,3,3,3,
          0, 1, 2,
          2, 3, 0,
          3, 4, 0,
          4, 1, 0,
          1, 5, 2,
          2, 5, 3,
          3, 5, 4,
          4, 5, 1]
      

      what does this part do:

      [3,3,3,3,3,3,3,3,
      

      I am trying to make a cube and I have four sides completed, but I can't cover the top and bottom because of these 3's I think.

      posted in Pythonista
      vignesh
      vignesh
    • RE: When will OMZ release an Xcode Template for Python3?

      @RomSpy it worked and my app is waiting on review now thank you!!

      posted in Pythonista
      vignesh
      vignesh
    • RE: When will OMZ release an Xcode Template for Python3?

      @RomSpy with the updated template, I am still getting code signing errors :(

      posted in Pythonista
      vignesh
      vignesh
    • RE: When will OMZ release an Xcode Template for Python3?

      @RomSpy So in the updated template, in the Py3kit_preflight.py file, there is no "#import pythonista' " statement at the beginning, was this intentional?

      posted in Pythonista
      vignesh
      vignesh
    • RE: When will OMZ release an Xcode Template for Python3?

      @RomSpy Thank you so much!

      posted in Pythonista
      vignesh
      vignesh
    • RE: When will OMZ release an Xcode Template for Python3?

      @JonB I looked into it more and I'm pretty sure I am

      posted in Pythonista
      vignesh
      vignesh