Skip to content
View micdol's full-sized avatar

Block or report micdol

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Koch snowflake, processing.py Koch snowflake, processing.py
    1
    class Koch:
    2
        def __init__(self,start,end):
    3
            v = end.copy().sub(start)
    4
            v.div(3)
    5
            
  2. DigitalHolography DigitalHolography Public

    OpenCV, CUDA, light propagation, digital holography reconstruction, phase unwrapping

    C++ 2 3

  3. nnmngator/Propagator3000 nnmngator/Propagator3000 Public

    Wave optics/crippling depression

    C++ 1

  4. Dottenator3000 Dottenator3000
    1
    class Ball:
    2
        def __init__(self, pos=PVector(0,0), vel=PVector(0,0), acc=PVector(0,0), r=5):
    3
            self.pos=pos
    4
            self.vel=vel
    5
            self.acc=acc