GPUImage New Distortion Filter

Touch Moved Method in our View Controller -(void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {     if (TouchEnable)     {         UITouch *touch = [touches anyObject];         CGPoint touchPoint = [touch locationInView:_img_view];                  @autoreleasepool {                          double dx = fabs(BeginPoint.x – touchPoint.x);             …

Jquery – TreeGrid from HTML table.

For that I used below jquery plugin for using that follow below simple steps Step 1. Initialize plugin (Download JS and CSS file from given reference link and add into your project) <script type=”text/javascript” src=”js/jquery.js”></script> <script type=”text/javascript” src=”js/jquery.treegrid.js”></script> <link rel=”stylesheet” href=”css/jquery.treegrid.css”> <script type=”text/javascript”> $(‘.tree’).treegrid(); </script> …

How to display ticking clock with differnce time from specific time (hours , minutes and seconds) in AngularJS?

Directive code : app.directive(‘clock’, [‘dateFilter’, ‘$timeout’, function (dateFilter, $timeout) { return { restrict: ‘E’, scope: { format: ‘@’, }, link: function (scope, element, attrs) { var updateTime = function () { //GET UTC DATE TIME BY USING MOMENT JS var now = moment(new Date()).utc().format(‘YYYY-MM-DD HH:mm:ss’) …