Help for this page

Select Code to Download


  1. or download this
                    if matrix is None:
                        # Compatibility with older note format
                        matrix = np.eye(3,3)
    ...
                    points = np.concatenate((points, np.ones([points.shape
    +[0],1])), axis=1)
                    points = points @ matrix.T
                    points = points[:, :2]
    
  2. or download this
    #!/usr/bin/env perl
    
    use v5.38;
    ...
    
        croak("Note not found in ". $fname);
    }