0

我正在尝试在 SceneKit 中使用SCNCylinder. 我希望将圆柱体放置在场景中用户点击屏幕的位置。

我目前的方法有效,但由于某种原因,圆柱体没有准确地放置在触摸位置。根据屏幕的不同部分,圆柱体有时位于触摸位置的中间,有时偏离很大。我希望屏幕截图能很好地说明问题。

在 screenpos 创建 SCNCylinder 时的偏移量

我目前有一个SCNSphere相机所在的位置。通过用球体对屏幕接触点进行命中测试,我检索到一条朝向命中测试的射线。然后我取光线的法线向量并将圆柱体沿乘以 6 的向量定位。

有谁知道这种方法的问题是什么以及为什么我会遇到这种偏移行为?

这就是我目前创建的方式SCNCylinder

- (IBAction)longPressGesture:(UILongPressGestureRecognizer *)sender {
    if (sender.state == UIGestureRecognizerStateBegan) {
        CGPoint location = [sender locationInView:self.sceneView];
        NSArray *hitTestResult = [self.sceneView hitTest:location  options:nil];

        if (hitTestResult.count == 1) {
            SCNHitTestResult *sphereHit = hitTestResult.firstObject;
            // Get ray coordinates from local camera position
            SCNVector3 localCoordinates = sphereHit.worldNormal;
            localCoordinates = SCNVector3Make(localCoordinates.x * 6, localCoordinates.y * 6, localCoordinates.z * 6);
            [self addCylinder:SCNVector3Make(localCoordinates.x, localCoordinates.y, localCoordinates.z)];
        }
    }
}

- (void)addCylinder:(SCNVector3)position {
    SCNCylinder *cylinder = [SCNCylinder cylinderWithRadius:0.5 height:0.01];
    SCNNode *cylinderNode = [SCNNode nodeWithGeometry:cylinder];

    // Create LookAt Contstraint
    NSMutableArray *constraints = [NSMutableArray new];
    SCNLookAtConstraint *lookAtCameraConstraint = [SCNLookAtConstraint lookAtConstraintWithTarget:cameraNode];
    lookAtCameraConstraint.gimbalLockEnabled = YES;
    [constraints addObject:lookAtCameraConstraint];

    // Turn 90° Constraint
    SCNTransformConstraint *turnConstraint = [SCNTransformConstraint transformConstraintInWorldSpace:NO withBlock:^SCNMatrix4(SCNNode * _Nonnull node, SCNMatrix4 transform) {
        transform = SCNMatrix4Mult(SCNMatrix4MakeRotation(M_PI_2, 1, 0, 0), transform);
        return transform;
    }];
    [constraints addObject:turnConstraint];

    cylinderNode.constraints = constraints;

    cylinderNode.position = position;

    SCNNode *rootNode = self.sceneView.scene.rootNode;
    [rootNode addChildNode:cylinderNode];
}
4

1 回答 1

0

SCNSphereSceneKit 中的每一个都是由多边形创建的。多边形的数量以及SCNSphere网格的粒度由segmentCount属性决定。

SCNSphere 文档

默认情况下,该segmentCount值设置为 48,这不是很细粒度。hitTest:对具有低 segmentCount 的 a执行 aSCNSphere将导致检索与实际接触点相比具有偏移的多边形。通过增加segmentCount(例如增加到96),水平和垂直方向的段增加并且偏移量将减少。

请记住,增加segmentCount意志会对性能产生影响。

于 2016-09-12T20:59:30.100 回答