LineDrawable.h 319 B

12345678910111213
  1. //
  2. // LineDrawable.h
  3. // pdftest
  4. //
  5. // Created by Ray on 10/15/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "BasicDrawable.h"
  9. @interface LineDrawable : BasicDrawable
  10. +(NSMutableDictionary *) createlineTemplate:(double) width from:(CGPoint) from to:(CGPoint) to;
  11. @end