Sketchup 21.0.0 -

SUEntitiesRef entities = SU_INVALID; SUModelGetEntities(model, &entities);

std::cout << "Selected entities: " << count << std::endl; sketchup 21.0.0

size_t count = 0; SUEntitiesGetNumSelected(entities, &count); SUEntitiesRef entities = SU_INVALID

Load in SketchUp: Extensions > Ruby Console > File > Open or paste code. This requires the SDK. A minimal main.cpp for a command that prints selection count: "Selected entities: " &lt

#include <SketchUpAPI/model/defs.h> #include <SketchUpAPI/initialize.h> #include <SketchUpAPI/application/application.h> #include <SketchUpAPI/model/model.h> #include <SketchUpAPI/model/entities.h> #include <iostream> void print_selection_count() SUModelRef model = SU_INVALID; SUApplicationGetActiveModel(&model); if (!model) return;

# Extrude selected face by a distance (along normal) module MyTools class ExtrudeByDistance def self.extrude(face, distance) return unless face.is_a?(Sketchup::Face)