Augmented Reality (Display Animated Object) - xcode

I am trying to build an Augmented Reality App
but I can't find any method to display the .dae file which is an animated object
is there any helpful tutorial about this? Using Xcode or NinevehGL. Thanks for helping

You can create augmented reality applications using cocod2d. There is a tutorial here http://www.raywenderlich.com/3997/introduction-to-augmented-reality-on-the-iphone As this is the simplest way I can think of implementing this.

Here's a link to a FBX converter. You can change collada dae files to FBX and then use the tutorial here using the metaio sdk to code an AR app in Xcode.

Related

Store colors in common project to share between Android and iOS

I'm developing an app with Xamarin.Android and Xamarin.iOS. I would like to keep my color values (hex, rgb, or whatever) in a common project so that they can be accessed by both the Android and iOS projects. Is there a way to do this? I'm also using MvvmCross so is there a plugin for this? Or is this a bad idea?
I'm going to be using the colors in the Android layout files (.xml files) and back-end code for both platforms.
Is there a way to do this? [Share colors between platforms]
Yes, you can use MvxColor.* (With some limitations)
I'm also using MvvmCross so is there a plugin for this?
MvxColor is available via a plugin on NuGet.
Or is this a bad idea? [Share colors between platforms]
Use Case: I'm going to be using the colors in the Android layout files (.xml files) and back-end code for both platforms.
MvxColor will not work directly in XML. But can be used through bindings or assigning colors via the code behind. Therefore, if you want to use any Android XML design time tools with colors then MvxColor will not work.

.DWG format File Viewer in xamarin forms/ Xamarin.android/ Xamarin.ios

I need to integrate *.dwg format file in Xamarin forms/ Xamarin.android/ Xamarin.ios
how can I able to show DWG AutoCAD file in Android and iOS.
dwg file contains floor plan which I need to select space.
if any nuget package available for Xamarin?
any kind of if anyone has any idea let me know.
Floor Plan DWG File sample-
http://www.cadforum.cz/catalog_en/file.asp?blk=12286
if you can save them as SVGs there are a few SVG nugets for xamarin.
https://github.com/luberda-molinet/FFImageLoading has support I believe though I haven't tried it,
https://github.com/paulpatarinski/Xamarin.Forms.Plugins/tree/master/SVG is what we use for all the icons in our xamarin.forms app so we don't need all the different png sizes for droid and ios.

Xamarin.Forms: what is the best way to create an image carousel?

I tried coule of plug-in for image carousel for Xamarin.Forms, but they are pretty old and not working fine. Trying the carousel view from Xamarin it's pretty slow and I guess has a limitation on the number of images I can add.
Anybody know how to implement a great carousel for a list of images in Xamarin.Forms ?
Thanks !!
The CarouselView is the way to go. See the link for a tutorial on how to use it.
It has been removed from 2.2.0 due to stability issues and will be temporarily placed in a separate Nuget package of most likely this link: https://www.nuget.org/packages/Xamarin.Forms.CarouselView/ within a few days.
Once it is stable it will be moved back into the main nuget package.

Can't get Java3D going on ImageJ 3DViewer

OS: Mac OS 10.11.1
I installed ImageJ and was going to display the example image "flybrain.tif" using "3D Viewer" under Plugins -> 3D. However, the 3D viewer doesn't launch.
I searched around and realised that it could be a problem from java3d, so downloaded java3d from https://java3d.java.net/binary-builds.html. I placed the three *.jar from java3d under /Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre/lib
and added the paths to the ~/.bash_profile.
The 3D viewer still doesn't start. Anything else I can try? Many thanks!
I have a similar, not identical setup (Mac OS 10.11.2, jdk 1.8.0_66) and I am able to open the Fly Brain in 3D viewer using Fiji.
In Fiji, I activated the update sites for ImageJ, Fiji, and 3D.
You might also try posting the question at the ImageJ forum.
Hope this helps.
Problem solved by downloading the fiji-jogl-java3d-20151006220121.zip file from http://forum.imagej.net/t/java-3d-progress-and-next-steps/135. The 3D viewer works and I am able to record the 3D video again. Thank you every one, #TSwayne #Jan-Eglinger #gouessej

How do I create a mapview with titanium appcelerator mobile?

I just start to work with appcelerator and I haven't found a good layout tutorial yet.
At the moment I try to show a mapview with a specific location. Has anybody an example or a good pointer on how to do this?
Download the KitchenSink which is mentioned on the Getting Started page. It has several hundred examples on how to use the various Titanium based APIs - including MapViews.
Here's a simple example
var mapview = Titanium.Map.createView({
mapType: Titanium.Map.STANDARD_TYPE,
region:{latitude:33.74511, longitude:-84.38993, latitudeDelta:0.5, longitudeDelta:0.5},
animate:true,
regionFit:true,
userLocation:true
});
win.add(mapview);

Resources