Re: Finding distance from the model
Thank you
But now I have another issue with my experience. What is want is that when the distance between our phone and and our model is less than 0.5 a popup should come to alert the user that it is not safe to come any closer.
For that purpose I used following code:
$scope.trigger = function() {
if (+magnitute(fargs.position[0].toFixed(2),fargs.position[1].toFixed(2),fargs.position[2].toFixed(2)) < 0.5) {
$scope.setWidgetProp('popup-2', 'visible', true)}
};
But it does not work..
Can you help me recifying this error.


