Strategic Objectives
• Master the mathematics of real-time collision detection.
• Understand the mechanics of force-feedback control loops.
• Explore the human haptic system and its psychological thresholds.
• Learn to optimize geometry for high-fidelity tactile rendering.
The Core Challenge
In the quest for immersive virtual reality, the sense of touch remains a complex computational bottleneck that breaks the illusion of presence.
The Haptic Interface
Touch as Information
Introduce the role of touch as a sensory communication channel and explain why reproducing tactile perception in digital environments is fundamentally different from reproducing sight or sound. Explore the biological mechanisms of touch, pressure, vibration, texture perception, proprioception, and kinesthetic awareness, then connect these human capabilities to the design requirements of haptic systems. Establish the conceptual framework that defines a haptic interface as a translator between physical sensation and computational representation.
The Architecture of a Haptic Interface
Examine the complete technological stack that enables virtual touch experiences. Discuss sensors, actuators, controllers, embedded electronics, communication pathways, and software frameworks that transform user actions into tactile responses. Explain how input detection, environmental modeling, signal processing, and feedback generation operate within closed-loop systems. Highlight the engineering challenges of latency, precision, stability, and synchronization that determine the realism of haptic interactions.
From Physical Contact to Virtual Experience
Explore how digital systems simulate the sensation of interacting with virtual objects, surfaces, and environments. Introduce the concepts of virtual forces, tactile rendering, contact modeling, and interaction loops that allow machines to generate convincing touch experiences. Compare applications across virtual reality, augmented reality, robotics, teleoperation, medical simulation, and advanced user interfaces. Conclude by identifying the algorithmic challenges that will be addressed throughout the remainder of the book, establishing a bridge from interface fundamentals to computational haptics.
The Mechanics of Touch
The Skin as a Distributed Sensing Interface
This section examines how the skin operates as a high-density biological sensor array, translating physical interactions such as pressure, vibration, stretch, and texture into neural signals. It focuses on mechanoreceptors and their specialized roles in detecting different tactile modalities, emphasizing how spatial distribution and receptor diversity shape the fidelity of touch perception in engineered haptic systems.
From Peripheral Nerves to Cortical Touch Maps
This section explores the transmission of tactile information from peripheral afferent nerves through spinal pathways to the brain, where it is organized into structured somatosensory representations. It highlights how signal relay through the spinal cord, brainstem, and thalamus culminates in cortical processing, producing spatial awareness, object recognition by touch, and integrated body mapping.
Perception Limits and the Engineering of Haptic Realism
This section translates human perceptual constraints into design principles for haptic systems, focusing on detection thresholds, adaptation effects, and nonlinear sensitivity to force and vibration. It explains how psychophysical laws govern just-noticeable differences and temporal resolution, directly informing the minimum refresh rates, amplitude ranges, and stability requirements for convincing virtual touch experiences.
Digital Geometry
From Rendering Surfaces to Touch-Ready Solids
This section reframes digital geometry from a purely visual medium into a physically actionable structure. It examines why traditional polygon meshes, optimized for rendering, often lack the topological rigor required for haptic simulation. The discussion introduces the need for solid modeling paradigms where geometry is not just an appearance but a physically consistent volume that can support contact, penetration reasoning, and stable force feedback.
Boundary Representation as a Topological Contract
This section explores boundary representation as a structured way to define solids through their enclosing surfaces. It focuses on how faces, edges, and vertices form an interconnected topology that guarantees geometric consistency. Emphasis is placed on manifold conditions, adjacency relationships, and watertight structures that ensure the virtual object behaves predictably when probed by collision or haptic algorithms.
Geometric Foundations for Collision and Force Feedback
This section connects geometric representation directly to haptic computation. It explains how boundary representations enable robust collision detection, stable contact point evaluation, and reliable surface normal extraction for force feedback systems. The focus is on ensuring numerical robustness in real-time interaction, including handling edge cases in intersection tests and supporting efficient updates for dynamic virtual environments.
The Haptic Loop
The 1kHz Contract Between Code and Physics
This section establishes the foundational requirement of high-frequency update loops in haptic systems, typically at or above 1kHz. It explains how the haptic loop forms a continuous negotiation between virtual simulation and physical actuation, where every millisecond defines perceptual stability. It also introduces the concept of latency budgets and why even minor timing violations accumulate into perceptible artifacts such as lag, stiffness distortion, or loss of texture fidelity in force feedback rendering.
Deterministic Execution Under Computational Pressure
This section examines how real-time computing principles govern the execution of haptic control loops. It focuses on scheduling strategies that ensure consistent loop timing under CPU and GPU load, including prioritization of control threads, mitigation of jitter, and avoidance of unpredictable execution paths. The discussion highlights how operating system behavior, resource contention, and interrupt handling directly influence the stability of the haptic feedback loop.
Stability Boundaries and the Physics of Feedback Collapse
This section explores the instability mechanisms that arise when haptic feedback loops violate real-time constraints. It connects discrete-time control effects with physical device behavior, showing how delays and undersampling can produce oscillations, vibrations, or runaway force outputs. It further introduces stability management strategies such as damping, passivity control, and filtering techniques that prevent unsafe or uncomfortable user experiences while preserving responsiveness.
Collision Detection Fundamentals
The Moment Digital Objects Become Real
This section introduces collision detection as the conceptual bridge between abstract geometry and perceived touch. It explains how haptic systems depend on precise timing of contact events to sustain the illusion of physicality. The focus is on understanding why even microsecond-level inaccuracies can break immersion, and how collision detection serves as the sensory gateway that converts virtual overlap into meaningful force feedback signals.
Broad-Phase Reasoning
This section explores the broad-phase stage of collision detection, where the system rapidly filters out object pairs that cannot possibly interact. It covers spatial partitioning strategies such as uniform grids, quadtrees, and octrees, as well as hierarchical bounding volumes like AABBs and bounding volume hierarchies. Techniques such as sweep-and-prune are framed as temporal coherence exploiters that reduce computational load. The emphasis is on scaling collision detection to complex virtual environments without sacrificing real-time responsiveness.
Narrow-Phase Precision and Contact Resolution
This section focuses on the narrow-phase computation that determines precise intersection geometry once candidate pairs are identified. It examines mesh-triangle intersection tests, continuous collision detection for fast-moving objects, and the construction of contact manifolds that describe surface interactions. Special attention is given to penetration depth estimation and the conversion of geometric contact into stable force feedback signals for haptic rendering systems. The goal is to transform detection into actionable physical response with high temporal stability.
Spatial Partitioning
The Collision Bottleneck in Virtual Touch Systems
This section introduces the computational challenge behind real-time haptic systems, where every frame requires evaluating potential contacts between a user-controlled proxy and a complex virtual environment. It explains why naive pairwise collision detection becomes unsustainable as scene complexity increases, leading to latency spikes and degraded tactile feedback. The focus is on reframing collision detection as a search problem rather than a geometric computation problem.
Hierarchical Space Decomposition Strategies
This section explores the core spatial partitioning strategies used to accelerate contact queries, including binary space partitioning, uniform grids, and hierarchical bounding volume structures. It emphasizes how different decomposition methods trade off preprocessing cost, memory usage, and query speed. Special attention is given to how binary space partitioning recursively divides space into convex regions, enabling rapid rejection of large non-intersecting areas.
Real-Time Haptic Query Optimization
This section focuses on integrating spatial partitioning structures directly into the haptic rendering loop. It explains how traversal algorithms prune irrelevant geometry at each update cycle, ensuring that only a minimal set of candidate collisions is evaluated. The discussion includes latency constraints, cache efficiency, and incremental updates to partitioning structures in dynamic environments. The goal is to preserve continuous force feedback without perceptible delay or instability.
Bounding Volume Hierarchies
Reframing Collision: From Raw Meshes to Contained Space
This section introduces the conceptual shift from direct triangle-level collision testing to hierarchical spatial abstraction. It explains how bounding volumes encapsulate complex geometry into simplified envelopes, reducing computational load while preserving interaction fidelity. The focus is on why naive collision detection breaks down under real-time force-feedback constraints and how hierarchical representation becomes essential for maintaining stable, responsive haptic interaction.
Constructing the Hierarchy: Partitioning Space for Performance
This section explores the construction of hierarchical structures that organize geometry into progressively finer bounding volumes. It covers the logic of recursive partitioning, the role of axis-aligned bounding boxes, and how tree balance impacts query performance. Emphasis is placed on design trade-offs in real-time systems, including build time versus traversal speed, and how different partitioning strategies influence responsiveness in interactive haptic environments.
Traversal and Pruning: Real-Time Decision Making in the Touch Loop
This section focuses on how bounding volume hierarchies are traversed during runtime to rapidly eliminate non-intersecting regions. It explains pruning strategies that prevent unnecessary narrow-phase collision tests and highlights how traversal order affects latency in force-feedback loops. The discussion connects hierarchy traversal to real-time constraints in haptic systems, showing how efficient querying directly stabilizes perceived touch and reduces computational overhead.
The God-Object Algorithm
The Proxy Principle Behind the God-Object Model
This section introduces the core idea of the god-object (proxy) approach, where the physical device position is separated from an idealized virtual proxy that represents actual contact behavior. It explains why direct mapping fails in rigid environments and how the proxy stabilizes interaction by acting as an intermediary that obeys virtual constraints. The discussion emphasizes how this separation enables convincing haptic rendering without allowing penetration through solid geometry.
Constraint Geometry and Surface Projection Mechanics
This section explores how the proxy is mathematically constrained to surfaces and boundaries within a virtual environment. It details how the system continuously projects the proxy onto the closest valid point when a collision is detected, enforcing non-penetration. Key ideas include geometric constraint solving, iterative projection methods, and the role of distance fields in determining allowable motion paths for the proxy.
Force Synthesis, Stiffness, and Real-Time Stability
This section explains how the displacement between the user-controlled device and the constrained proxy is converted into force feedback. It focuses on how virtual stiffness and damping are tuned to maintain stability in high-frequency haptic loops. The discussion highlights control-theoretic considerations, ensuring that the system remains responsive without oscillation or instability while simulating solid contact forces.
Penalty-Based Methods
Virtual Contact as a Restoring Force Field
This section reframes collision as a continuous force problem rather than a discrete event. Surfaces are treated as virtual springs that activate upon penetration, converting geometric overlap into a physically meaningful restoring force. The core idea of penetration depth becomes the driving signal that determines both magnitude and direction of the haptic response, establishing the foundation of penalty-based interaction models in virtual environments.
Spring-Damper Dynamics and Stability Control
This section develops the dynamic model that governs penalty forces using spring-damper systems. Stiffness defines how aggressively the system resists penetration, while damping suppresses oscillations that arise from discrete time integration. The interplay between these parameters determines realism and stability, especially in high-frequency haptic loops where even small tuning errors can lead to jitter or instability.
Engineering Penalty Forces in Real-Time Physics Engines
This section focuses on practical implementation inside real-time physics and haptic systems. It outlines how collision detection pipelines feed penetration depth into force computation modules, and how penalty forces are integrated into broader simulation loops. Special attention is given to computational efficiency, stability trade-offs, and how modern engines balance realism with performance constraints in interactive environments.
Friction Modeling
The Physics of Resistance at the Contact Boundary
This section establishes the physical foundation of friction as an interaction force emerging from surface contact. It formalizes how static and kinetic regimes arise from opposing tangential motion under a normal force. The transition between sticking and sliding is introduced as a threshold phenomenon governed by material interaction and load conditions, forming the baseline for all later computational models.
Algorithmic Friction in Real-Time Simulation Systems
This section translates physical friction principles into computational models suitable for real-time haptic rendering. It examines constraint-based and penalty-based approaches for enforcing frictional limits, including velocity damping and friction cones. Special focus is given to numerical stability, time-step sensitivity, and how stick-slip artifacts emerge in discrete simulation environments.
Perceptual Friction and Material Identity in Virtual Touch
This section focuses on how friction parameters are tuned to create convincing material sensations in haptic systems. It explores how variations in static and kinetic coefficients shape perceived texture, weight, and resistance. Emphasis is placed on perceptual calibration, where small changes in friction behavior dramatically alter the user's sense of surface identity and realism.
Texture Rendering
Encoding Micro-Geometry into Tactile Space
This section introduces the transformation of traditional surface representation into haptic texture maps. It explains how micro-geometry is abstracted from dense polygonal meshes into compact data structures that encode perceived roughness, grain, and ridged patterns. The focus is on how spatial surface detail is translated into tactile signals that can be evaluated independently of visual rendering, enabling scalable simulation of complex materials without geometric explosion.
Haptic Signal Synthesis Through High-Frequency Modulation
This section explains the core rendering pipeline that converts haptic texture maps into real-time force feedback. It explores how movement over a virtual surface is transformed into high-frequency vibration signals that simulate bumps, grooves, and roughness. Key challenges such as sampling rate limitations, aliasing artifacts, and temporal filtering are addressed, showing how perceptual continuity is preserved even under constrained actuator bandwidth.
Perceptual Design and Optimization of Virtual Surface Feel
This section focuses on the perceptual and system-level constraints of haptic texture rendering. It examines how human tactile sensitivity shapes the design of frequency profiles, amplitude scaling, and spatial coherence of virtual textures. The discussion extends to optimization strategies for real-time systems, including level-of-detail approaches for haptic rendering and adaptive modulation based on user interaction speed and contact dynamics.
Deformable Bodies
From Rigid to Deformable Matter
This section introduces the fundamental shift from rigid-body assumptions to deformable representations in haptic systems. It explains how continuous materials must be discretized into computational forms that can respond to external force inputs. The focus is on building intuition for elasticity, structural compliance, and how internal forces propagate through a material, enabling realistic deformation under touch.
Computational Models for Real-Time Soft Body Simulation
This section explores the computational architectures that make deformable body simulation feasible in real time. It examines numerical integration techniques, constraint-based solvers, and hybrid models that trade physical precision for stability and speed. Special emphasis is placed on maintaining haptic-frequency responsiveness while preventing instability such as jitter, energy explosion, or excessive damping in interactive environments.
Haptic Rendering of Biological and Soft Tissues
This section focuses on translating deformable simulations into perceptible force feedback for end users. It covers the mapping between virtual tissue deformation and actuator response in haptic devices, emphasizing surgical simulation and interactive training systems. Key properties such as viscoelasticity, anisotropy, and nonlinear stiffness are discussed as essential for reproducing the nuanced feel of biological materials under manipulation.
Haptic Stability
Energy as the Hidden State of Touch Rendering
This section reframes haptic interaction as an energy exchange problem rather than a signal processing task. It introduces passivity as a constraint that ensures the system never generates net energy on its own. Readers learn how virtual environments, force feedback loops, and user interactions can be modeled as coupled energy reservoirs, where stability emerges only when energy is conserved or dissipated rather than amplified.
When Numerical Reality Breaks Physical Laws
This section examines how digital implementations of haptic systems unintentionally violate passivity through sampling delays, discretization errors, and quantization. It explains how these effects introduce artificial energy into the loop, leading to oscillations, jitter, and in extreme cases unstable 'exploding' force feedback. The reader is introduced to diagnostic viewpoints such as monitoring energy injection and recognizing early signs of passivity violation.
Engineering Passive-by-Design Haptic Systems
This section focuses on practical architectural strategies for enforcing passivity in haptic rendering pipelines. It covers methods such as virtual damping injection, energy tanks, scattering transformations, and conservative coupling between user and simulation. The emphasis is on designing systems that remain stable even under worst-case interaction scenarios, ensuring predictable and safe force feedback behavior.
Degrees of Freedom
From Point Contact to Full Rigid-Body Presence
This section introduces the conceptual leap from 3-DOF positional haptics to full 6-DOF rigid-body interaction. It explains how translational motion alone is insufficient for tool-based manipulation and how rotational state must be integrated into the haptic model. The focus is on redefining the interaction proxy from a point in space to a fully articulated rigid body with orientation, enabling realistic simulation of grasped tools in virtual environments.
Torque, Wrenches, and the Mathematics of Resistance
This section explores how forces and torques combine into a unified representation of interaction known as a wrench. It details how torque arises from off-center forces and how rotational resistance must be computed to simulate realistic tools such as screwdrivers and wrenches. The mathematical foundation of rigid-body dynamics is introduced, including how orientation changes propagate through force feedback systems.
Stability, Control Loops, and Perceptual Fidelity in 6-DOF Haptics
This section focuses on the control architectures required to maintain stability when rendering full 6-DOF haptic interactions. It examines impedance-based control models, feedback loop stability, and the perceptual challenges of delivering coherent force and torque signals. Special attention is given to ensuring that virtual tools respond naturally under constraints, preserving immersion while avoiding oscillations or instability in the haptic system.
Force Feedback Hardware
Actuation Architectures Behind Artificial Touch
This section examines how haptic devices physically generate force through layered actuation systems. It explores the role of servo motors, direct-drive systems, cable and gear transmissions, and emerging soft-actuation approaches in shaping responsiveness and fidelity. Emphasis is placed on how mechanical design choices determine bandwidth, backdrivability, and perceived realism at the user interface, establishing the foundational hardware constraints within which all force feedback computation must operate.
Kinematic Chains and the Geometry of Force Delivery
This section unpacks how haptic devices translate motor rotations into controlled motion at the user interaction point through structured kinematic chains. It focuses on forward and inverse kinematics as the mathematical bridge between joint space and Cartesian space, highlighting the role of Jacobians in mapping velocities and forces. The discussion also covers workspace constraints, singular configurations, and redundancy resolution in multi-DOF devices, revealing how geometry directly shapes the expressive limits of touch simulation.
Mapping Virtual Forces to Physical Reality
This section focuses on the computational and control layer that converts software-defined force vectors into motor torques. It explains how Jacobian transpose methods, inverse dynamics, and impedance or admittance control strategies distribute forces across actuators while maintaining stability and responsiveness. Attention is given to calibration, latency compensation, saturation handling, and safety constraints, all of which ensure that virtual interactions remain physically plausible and ergonomically safe under real-world operating conditions.
Telerobotics
The Architecture of Touch at a Distance
This section establishes the foundational architecture of telerobotic systems, focusing on how master consoles and remote slave robots are coupled through bidirectional control loops. It explores how haptic rendering is embedded into teleoperation pipelines, allowing force and tactile sensations to be transmitted through networked systems. Emphasis is placed on the decomposition of sensing, actuation, and feedback channels, and how these elements form a closed-loop extension of human intent across physical distance.
Latency, Noise, and the Instability of Remote Touch
This section examines the core technical challenge of telerobotics: maintaining stability in the presence of communication latency, jitter, and signal noise. It analyzes how time delays disrupt force feedback loops, potentially leading to oscillations or loss of control fidelity. The discussion introduces strategies for mitigating instability, including predictive modeling, damping techniques, and passivity-based control approaches that preserve safe interaction despite degraded network conditions.
Remote Intervention in Extreme Environments
This section explores high-impact applications of telerobotics, particularly in minimally invasive remote surgery and operations in hazardous environments such as nuclear facilities, deep-sea exploration, and space missions. It highlights how haptic rendering enables operators to 'feel' remote environments with sufficient fidelity to perform delicate manipulations. The section also addresses system redundancy, safety constraints, and supervisory control frameworks that ensure reliability when human lives or critical infrastructure are at stake.
Multimodal Integration
Temporal Precision as the Foundation of Sensory Unity
This section explores the strict temporal constraints required to synchronize haptic feedback with visual motion and audio cues. It explains how latency mismatches across modalities break perceptual unity, why the human brain binds sensory events within narrow temporal windows, and how system designers must define and enforce latency budgets. It also introduces predictive compensation strategies for maintaining alignment under network jitter or rendering delays.
Designing Coherent Cross-Modal Mappings
This section focuses on how visual, auditory, and haptic signals must be semantically aligned to create a consistent perceptual narrative. It covers mapping strategies between physical forces and visual events, auditory reinforcement of contact and impact, and the role of cross-modal correspondence in shaping user intuition. Special attention is given to avoiding sensory contradictions that degrade immersion, even when timing is correct.
System Architectures for Real-Time Multisensory Fusion
This section examines the computational architecture required to maintain tight synchronization across rendering systems. It details event-driven pipelines, timestamped message passing, buffering strategies, and drift correction mechanisms that ensure alignment between haptic actuators, audio engines, and visual render loops. It also discusses predictive modeling techniques that compensate for hardware variability and ensure stable multisensory output under load.
Computational Geometry
Geometric Foundations of Distance and Space
This section establishes the core geometric primitives used in proximity reasoning, including points, vectors, edges, triangles, and signed distance fields. It develops the mathematical intuition behind Euclidean distance, projection, and metric spaces as they apply to digital geometry. The reader learns how continuous 3D space is discretized into computable structures that enable reliable measurement of closeness between a probe point and complex surfaces.
Nearest Point Computation on Mesh Surfaces
This section explores the core algorithms for computing the closest point on a triangle mesh, including point-to-triangle projection, barycentric coordinate evaluation, and edge/vertex region tests. It examines how triangle-level queries are combined into full mesh queries using acceleration structures such as bounding volume hierarchies and spatial partitioning trees. The focus is on turning discrete mesh elements into a continuous approximation of surface distance suitable for real-time interaction.
Real-Time Proximity Queries for Haptic Systems
This section connects computational geometry to real-time haptic rendering constraints, focusing on low-latency proximity queries, incremental collision detection, and stable force computation. It discusses algorithmic trade-offs between accuracy and speed, including approximate nearest neighbor methods, temporal coherence exploitation, and continuous collision detection strategies. Emphasis is placed on numerical stability and robustness to ensure smooth force feedback without jitter or artifacts.
Data Compression for Haptics
Temporal Geometry of Touch Signals in Networked Environments
This section examines how physical touch interactions are transformed into high-frequency digital signals suitable for transmission across telepresence systems. It explores the temporal structure of haptic data, including sampling rates, micro-interaction bursts, and the challenges of preserving tactile continuity under strict bandwidth and latency constraints. Special focus is placed on how human perceptual thresholds define what must be preserved versus what can be approximated in motion-to-touch translation.
Loss-Aware Compression Strategies for Force and Vibration Data
This section focuses on the core compression mechanisms that make cloud-based haptics feasible. It covers predictive encoding of force trajectories, adaptive sampling of vibration textures, and perceptual compression models that prioritize meaningful tactile cues over raw signal fidelity. The discussion highlights how lossy and lossless strategies are balanced to maintain the illusion of continuous physical contact while minimizing transmission cost.
Network Protocols for Synchronized Multisensory Telepresence
This section explores how haptic data is integrated into network protocols designed for immersive telepresence systems. It examines packetization strategies, jitter compensation, and synchronization techniques that align tactile feedback with visual and audio streams. The emphasis is on ensuring stability and responsiveness in distributed systems where even minor timing mismatches can break the illusion of physical co-location.
The Future of Touch
Acoustic Fields as Invisible Interfaces
This section explores the physical principles that allow high-frequency sound waves to generate perceivable tactile sensations in mid-air. It focuses on how carefully controlled acoustic pressure fields can be shaped into localized points of contact on the skin, creating the illusion of physical interaction without any intermediary device. The discussion frames ultrasound not as sound, but as a programmable force field capable of rendering spatially precise haptic events.
From Wearables to Hybrid Sensory Layers
This section examines the transition from traditional wearable haptics to hybrid systems that combine on-body devices with environmental ultrasound fields. It considers how gloves, rings, and lightweight actuators can enhance or calibrate mid-air haptic sensations, improving precision, intensity, and contextual awareness. The focus is on how multimodal feedback systems merge vibrotactile signals with airborne force cues to create continuous tactile experiences.
Designing the Future Skin of Computing
This section projects forward into the application landscape of mid-air haptics, particularly in augmented reality, virtual environments, and spatial computing systems. It discusses how touch becomes a programmable interface layer embedded in physical space, enabling gesture-based manipulation and invisible controls. It also addresses safety limits of ultrasound exposure, perceptual overload, and the ethical implications of designing systems that directly stimulate human tactile perception without physical contact.
Design Ethics and Standards
Ethical Foundations of Synthetic Touch and Consent
This section establishes the ethical framework governing haptic systems, focusing on consent, autonomy, and the responsible design of touch-mediated communication. It explores how virtual physicality extends human interaction into new sensory domains, requiring explicit rules for permission, contextual integrity, and emotional safety. The discussion emphasizes the importance of haptic communication as a socially embedded act that can influence perception, trust, and interpersonal boundaries.
Safety Standards and Physiological Constraints in Force Feedback Systems
This section examines the technical and regulatory frameworks required to ensure safe deployment of haptic technologies. It addresses force thresholds, latency constraints, and biomechanical compatibility to prevent physical harm or sensory overload. It also considers standardization efforts for device interoperability and accessibility, ensuring that haptic systems remain safe across diverse user populations and use cases.
Psychological and Societal Consequences of Digital Physicality
This section explores the broader psychological and societal implications of immersive haptic systems, including changes in emotional perception, intimacy, and behavioral conditioning. It investigates how persistent exposure to artificial touch can reshape human expectations of presence and connection, while also raising concerns about manipulation, dependency, and emotional authenticity in mediated environments.