From 0fc04c2d8574205c91735fd7e8544404f9ee793e Mon Sep 17 00:00:00 2001 From: asha Date: Mon, 25 Jul 2016 13:21:13 +0800 Subject: [PATCH] lint fix --- MD360Player4iOS.podspec | 4 ++-- MDVRLibrary/MDVRLibrary/MDPlane.m | 2 +- MDVRLibrary/MDVRLibrary/MDProjectionStrategy.m | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MD360Player4iOS.podspec b/MD360Player4iOS.podspec index 56ff5e3..1c2b57f 100644 --- a/MD360Player4iOS.podspec +++ b/MD360Player4iOS.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "MD360Player4iOS" - s.version = "1.1.1.beta" + s.version = "1.1.3.beta" s.summary = "It is a lite library to render 360 degree panorama video for iOS." # This description is used to generate tags and improve search results. @@ -78,7 +78,7 @@ Pod::Spec.new do |s| # Supports git, hg, bzr, svn and HTTP. # - s.source = { :git => "https://github.com/ashqal/MD360Player4iOS.git", :tag => "1.1.1.beta" } + s.source = { :git => "https://github.com/ashqal/MD360Player4iOS.git", :tag => "1.1.3.beta" } # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # diff --git a/MDVRLibrary/MDVRLibrary/MDPlane.m b/MDVRLibrary/MDVRLibrary/MDPlane.m index 16349d1..961bb4c 100644 --- a/MDVRLibrary/MDVRLibrary/MDPlane.m +++ b/MDVRLibrary/MDVRLibrary/MDPlane.m @@ -68,7 +68,7 @@ - (float*)getVertexBuffer:(int)index{ return pScaledVerticesBuffer; } -- (void) generatePlane:(MDStereoSphere3D*) object3D{ +- (void) generatePlane:(MDAbsObject3D*) object3D{ int numPoint = sPlaneNumPoint; float* texcoords = [self generateTexcoords]; diff --git a/MDVRLibrary/MDVRLibrary/MDProjectionStrategy.m b/MDVRLibrary/MDVRLibrary/MDProjectionStrategy.m index 02353cb..c4d1d66 100644 --- a/MDVRLibrary/MDVRLibrary/MDProjectionStrategy.m +++ b/MDVRLibrary/MDVRLibrary/MDProjectionStrategy.m @@ -187,7 +187,7 @@ - (instancetype)initWith:(MDPlaneScaleCalculator*) calculator{ @end -@interface PlaneProjection : AbsProjectionMode +@interface PlaneProjection : AbsProjectionMode @property (nonatomic,strong) MDAbsObject3D* object3D; @property (nonatomic,strong) MDPlaneScaleCalculator* calculator; @end